2015-07-07 00:54:22 +00:00
|
|
|
// Copyright 2014 The go-ethereum Authors
|
2015-07-22 16:48:40 +00:00
|
|
|
// This file is part of the go-ethereum library.
|
2015-07-07 00:54:22 +00:00
|
|
|
//
|
2015-07-23 16:35:11 +00:00
|
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
2015-07-07 00:54:22 +00:00
|
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
2015-07-22 16:48:40 +00:00
|
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
2015-07-07 00:54:22 +00:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-07-22 16:48:40 +00:00
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2015-07-07 00:54:22 +00:00
|
|
|
// GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
2015-07-22 16:48:40 +00:00
|
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
2014-12-31 14:39:33 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
|
2015-01-15 18:58:38 +00:00
|
|
|
This key store behaves as KeyStorePlain with the difference that
|
|
|
|
the private key is encrypted and on disk uses another JSON encoding.
|
2014-12-31 14:39:33 +00:00
|
|
|
|
2015-05-24 01:42:10 +00:00
|
|
|
The crypto is documented at https://github.com/ethereum/wiki/wiki/Web3-Secret-Storage-Definition
|
2014-12-31 14:39:33 +00:00
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
package crypto
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"crypto/aes"
|
2015-05-24 01:42:10 +00:00
|
|
|
"crypto/sha256"
|
2015-04-21 15:00:30 +00:00
|
|
|
"encoding/hex"
|
2014-12-31 14:39:33 +00:00
|
|
|
"encoding/json"
|
|
|
|
"errors"
|
2015-05-24 01:42:10 +00:00
|
|
|
"fmt"
|
2015-01-15 16:45:45 +00:00
|
|
|
"io"
|
2015-05-24 01:42:10 +00:00
|
|
|
"reflect"
|
2015-02-17 12:05:58 +00:00
|
|
|
|
2015-04-02 19:14:25 +00:00
|
|
|
"github.com/ethereum/go-ethereum/common"
|
2015-02-17 12:05:58 +00:00
|
|
|
"github.com/ethereum/go-ethereum/crypto/randentropy"
|
2015-09-10 15:48:20 +00:00
|
|
|
"github.com/pborman/uuid"
|
2015-05-24 01:42:10 +00:00
|
|
|
"golang.org/x/crypto/pbkdf2"
|
2015-02-17 12:05:58 +00:00
|
|
|
"golang.org/x/crypto/scrypt"
|
2014-12-31 14:39:33 +00:00
|
|
|
)
|
|
|
|
|
2015-01-07 15:06:26 +00:00
|
|
|
const (
|
2015-05-24 01:42:10 +00:00
|
|
|
keyHeaderKDF = "scrypt"
|
2015-10-23 14:49:36 +00:00
|
|
|
|
|
|
|
// n,r,p = 2^18, 8, 1 uses 256MB memory and approx 1s CPU time on a modern CPU.
|
|
|
|
StandardScryptN = 1 << 18
|
|
|
|
StandardScryptP = 1
|
|
|
|
|
|
|
|
// n,r,p = 2^12, 8, 6 uses 4MB memory and approx 100ms CPU time on a modern CPU.
|
|
|
|
LightScryptN = 1 << 12
|
|
|
|
LightScryptP = 6
|
|
|
|
|
|
|
|
scryptR = 8
|
|
|
|
scryptDKLen = 32
|
2015-01-07 15:06:26 +00:00
|
|
|
)
|
2014-12-31 14:39:33 +00:00
|
|
|
|
2015-01-07 15:06:26 +00:00
|
|
|
type keyStorePassphrase struct {
|
2014-12-31 14:39:33 +00:00
|
|
|
keysDirPath string
|
2015-10-23 14:49:36 +00:00
|
|
|
scryptN int
|
|
|
|
scryptP int
|
|
|
|
scryptR int
|
|
|
|
scryptDKLen int
|
2014-12-31 14:39:33 +00:00
|
|
|
}
|
|
|
|
|
2015-10-23 14:49:36 +00:00
|
|
|
func NewKeyStorePassphrase(path string, scryptN int, scryptP int) KeyStore {
|
|
|
|
return &keyStorePassphrase{path, scryptN, scryptP, scryptR, scryptDKLen}
|
2015-01-07 15:06:26 +00:00
|
|
|
}
|
|
|
|
|
2015-01-15 16:45:45 +00:00
|
|
|
func (ks keyStorePassphrase) GenerateNewKey(rand io.Reader, auth string) (key *Key, err error) {
|
|
|
|
return GenerateNewKeyDefault(ks, rand, auth)
|
2014-12-31 14:39:33 +00:00
|
|
|
}
|
|
|
|
|
2015-04-02 19:14:25 +00:00
|
|
|
func (ks keyStorePassphrase) GetKey(keyAddr common.Address, auth string) (key *Key, err error) {
|
2015-07-03 03:56:20 +00:00
|
|
|
keyBytes, keyId, err := decryptKeyFromFile(ks.keysDirPath, keyAddr, auth)
|
|
|
|
if err == nil {
|
|
|
|
key = &Key{
|
|
|
|
Id: uuid.UUID(keyId),
|
|
|
|
Address: keyAddr,
|
|
|
|
PrivateKey: ToECDSA(keyBytes),
|
|
|
|
}
|
2015-01-19 19:24:30 +00:00
|
|
|
}
|
2015-07-03 03:56:20 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ks keyStorePassphrase) Cleanup(keyAddr common.Address) (err error) {
|
|
|
|
return cleanup(ks.keysDirPath, keyAddr)
|
2014-12-31 14:39:33 +00:00
|
|
|
}
|
|
|
|
|
2015-04-02 19:14:25 +00:00
|
|
|
func (ks keyStorePassphrase) GetKeyAddresses() (addresses []common.Address, err error) {
|
2015-07-02 21:58:00 +00:00
|
|
|
return getKeyAddresses(ks.keysDirPath)
|
2015-01-25 01:07:20 +00:00
|
|
|
}
|
|
|
|
|
2015-01-07 15:06:26 +00:00
|
|
|
func (ks keyStorePassphrase) StoreKey(key *Key, auth string) (err error) {
|
2014-12-31 14:39:33 +00:00
|
|
|
authArray := []byte(auth)
|
2015-04-02 15:02:56 +00:00
|
|
|
salt := randentropy.GetEntropyCSPRNG(32)
|
2015-10-23 14:49:36 +00:00
|
|
|
derivedKey, err := scrypt.Key(authArray, salt, ks.scryptN, ks.scryptR, ks.scryptP, ks.scryptDKLen)
|
2014-12-31 14:39:33 +00:00
|
|
|
if err != nil {
|
2015-01-07 15:06:26 +00:00
|
|
|
return err
|
2014-12-31 14:39:33 +00:00
|
|
|
}
|
2015-05-24 01:42:10 +00:00
|
|
|
encryptKey := derivedKey[:16]
|
2014-12-31 14:39:33 +00:00
|
|
|
keyBytes := FromECDSA(key.PrivateKey)
|
|
|
|
|
2015-05-24 01:42:10 +00:00
|
|
|
iv := randentropy.GetEntropyCSPRNG(aes.BlockSize) // 16
|
|
|
|
cipherText, err := aesCTRXOR(encryptKey, keyBytes, iv)
|
2014-12-31 14:39:33 +00:00
|
|
|
if err != nil {
|
2015-01-07 15:06:26 +00:00
|
|
|
return err
|
2014-12-31 14:39:33 +00:00
|
|
|
}
|
|
|
|
|
2016-02-21 18:40:27 +00:00
|
|
|
mac := Keccak256(derivedKey[16:32], cipherText)
|
2015-04-15 11:24:12 +00:00
|
|
|
|
2015-05-24 01:42:10 +00:00
|
|
|
scryptParamsJSON := make(map[string]interface{}, 5)
|
2015-10-23 14:49:36 +00:00
|
|
|
scryptParamsJSON["n"] = ks.scryptN
|
|
|
|
scryptParamsJSON["r"] = ks.scryptR
|
|
|
|
scryptParamsJSON["p"] = ks.scryptP
|
|
|
|
scryptParamsJSON["dklen"] = ks.scryptDKLen
|
2015-05-24 01:42:10 +00:00
|
|
|
scryptParamsJSON["salt"] = hex.EncodeToString(salt)
|
2015-04-15 11:24:12 +00:00
|
|
|
|
2015-05-10 18:30:02 +00:00
|
|
|
cipherParamsJSON := cipherparamsJSON{
|
|
|
|
IV: hex.EncodeToString(iv),
|
2015-04-15 11:24:12 +00:00
|
|
|
}
|
|
|
|
|
2015-05-10 18:30:02 +00:00
|
|
|
cryptoStruct := cryptoJSON{
|
2015-05-24 01:42:10 +00:00
|
|
|
Cipher: "aes-128-ctr",
|
2015-05-10 18:30:02 +00:00
|
|
|
CipherText: hex.EncodeToString(cipherText),
|
|
|
|
CipherParams: cipherParamsJSON,
|
|
|
|
KDF: "scrypt",
|
|
|
|
KDFParams: scryptParamsJSON,
|
|
|
|
MAC: hex.EncodeToString(mac),
|
2014-12-31 14:39:33 +00:00
|
|
|
}
|
2015-05-24 01:42:10 +00:00
|
|
|
encryptedKeyJSONV3 := encryptedKeyJSONV3{
|
2015-04-21 15:00:30 +00:00
|
|
|
hex.EncodeToString(key.Address[:]),
|
2015-05-10 18:30:02 +00:00
|
|
|
cryptoStruct,
|
|
|
|
key.Id.String(),
|
|
|
|
version,
|
2014-12-31 14:39:33 +00:00
|
|
|
}
|
2015-05-24 01:42:10 +00:00
|
|
|
keyJSON, err := json.Marshal(encryptedKeyJSONV3)
|
2014-12-31 14:39:33 +00:00
|
|
|
if err != nil {
|
2015-01-07 15:06:26 +00:00
|
|
|
return err
|
2014-12-31 14:39:33 +00:00
|
|
|
}
|
|
|
|
|
2015-07-02 21:58:00 +00:00
|
|
|
return writeKeyFile(key.Address, ks.keysDirPath, keyJSON)
|
2014-12-31 14:39:33 +00:00
|
|
|
}
|
|
|
|
|
2015-04-02 19:14:25 +00:00
|
|
|
func (ks keyStorePassphrase) DeleteKey(keyAddr common.Address, auth string) (err error) {
|
2014-12-31 14:39:33 +00:00
|
|
|
// only delete if correct passphrase is given
|
2015-07-03 03:56:20 +00:00
|
|
|
_, _, err = decryptKeyFromFile(ks.keysDirPath, keyAddr, auth)
|
2014-12-31 14:39:33 +00:00
|
|
|
if err != nil {
|
2015-01-07 15:06:26 +00:00
|
|
|
return err
|
2014-12-31 14:39:33 +00:00
|
|
|
}
|
|
|
|
|
2015-07-02 21:58:00 +00:00
|
|
|
return deleteKey(ks.keysDirPath, keyAddr)
|
2014-12-31 14:39:33 +00:00
|
|
|
}
|
|
|
|
|
2015-07-03 03:56:20 +00:00
|
|
|
func decryptKeyFromFile(keysDirPath string, keyAddr common.Address, auth string) (keyBytes []byte, keyId []byte, err error) {
|
2015-07-02 21:58:00 +00:00
|
|
|
m := make(map[string]interface{})
|
2015-07-03 03:56:20 +00:00
|
|
|
err = getKey(keysDirPath, keyAddr, &m)
|
2014-12-31 14:39:33 +00:00
|
|
|
if err != nil {
|
2015-07-02 21:58:00 +00:00
|
|
|
return
|
2014-12-31 14:39:33 +00:00
|
|
|
}
|
|
|
|
|
2015-05-24 01:42:10 +00:00
|
|
|
v := reflect.ValueOf(m["version"])
|
|
|
|
if v.Kind() == reflect.String && v.String() == "1" {
|
|
|
|
k := new(encryptedKeyJSONV1)
|
2015-07-03 03:56:20 +00:00
|
|
|
err = getKey(keysDirPath, keyAddr, &k)
|
2015-05-24 01:42:10 +00:00
|
|
|
if err != nil {
|
2015-07-02 21:58:00 +00:00
|
|
|
return
|
2015-05-24 01:42:10 +00:00
|
|
|
}
|
|
|
|
return decryptKeyV1(k, auth)
|
|
|
|
} else {
|
|
|
|
k := new(encryptedKeyJSONV3)
|
2015-07-03 03:56:20 +00:00
|
|
|
err = getKey(keysDirPath, keyAddr, &k)
|
2015-05-24 01:42:10 +00:00
|
|
|
if err != nil {
|
2015-07-02 21:58:00 +00:00
|
|
|
return
|
2015-05-24 01:42:10 +00:00
|
|
|
}
|
|
|
|
return decryptKeyV3(k, auth)
|
|
|
|
}
|
|
|
|
}
|
2014-12-31 14:39:33 +00:00
|
|
|
|
2015-05-24 01:42:10 +00:00
|
|
|
func decryptKeyV3(keyProtected *encryptedKeyJSONV3, auth string) (keyBytes []byte, keyId []byte, err error) {
|
|
|
|
if keyProtected.Version != version {
|
|
|
|
return nil, nil, fmt.Errorf("Version not supported: %v", keyProtected.Version)
|
|
|
|
}
|
|
|
|
|
|
|
|
if keyProtected.Crypto.Cipher != "aes-128-ctr" {
|
|
|
|
return nil, nil, fmt.Errorf("Cipher not supported: %v", keyProtected.Crypto.Cipher)
|
|
|
|
}
|
2015-04-21 15:00:30 +00:00
|
|
|
|
2015-05-24 01:42:10 +00:00
|
|
|
keyId = uuid.Parse(keyProtected.Id)
|
2015-04-21 15:00:30 +00:00
|
|
|
mac, err := hex.DecodeString(keyProtected.Crypto.MAC)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
2015-05-10 18:30:02 +00:00
|
|
|
iv, err := hex.DecodeString(keyProtected.Crypto.CipherParams.IV)
|
2015-04-21 15:00:30 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
cipherText, err := hex.DecodeString(keyProtected.Crypto.CipherText)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
2014-12-31 14:39:33 +00:00
|
|
|
|
2015-05-24 01:42:10 +00:00
|
|
|
derivedKey, err := getKDFKey(keyProtected.Crypto, auth)
|
2015-04-15 11:24:12 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
2016-02-21 18:40:27 +00:00
|
|
|
calculatedMAC := Keccak256(derivedKey[16:32], cipherText)
|
2015-05-24 01:42:10 +00:00
|
|
|
if !bytes.Equal(calculatedMAC, mac) {
|
|
|
|
return nil, nil, errors.New("Decryption failed: MAC mismatch")
|
|
|
|
}
|
2015-04-15 11:24:12 +00:00
|
|
|
|
2015-05-24 01:42:10 +00:00
|
|
|
plainText, err := aesCTRXOR(derivedKey[:16], cipherText, iv)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
return plainText, keyId, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func decryptKeyV1(keyProtected *encryptedKeyJSONV1, auth string) (keyBytes []byte, keyId []byte, err error) {
|
|
|
|
keyId = uuid.Parse(keyProtected.Id)
|
|
|
|
mac, err := hex.DecodeString(keyProtected.Crypto.MAC)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
iv, err := hex.DecodeString(keyProtected.Crypto.CipherParams.IV)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
cipherText, err := hex.DecodeString(keyProtected.Crypto.CipherText)
|
|
|
|
if err != nil {
|
|
|
|
return nil, nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
derivedKey, err := getKDFKey(keyProtected.Crypto, auth)
|
2014-12-31 14:39:33 +00:00
|
|
|
if err != nil {
|
2015-01-25 01:07:20 +00:00
|
|
|
return nil, nil, err
|
2014-12-31 14:39:33 +00:00
|
|
|
}
|
2015-04-02 16:15:58 +00:00
|
|
|
|
2016-02-21 18:40:27 +00:00
|
|
|
calculatedMAC := Keccak256(derivedKey[16:32], cipherText)
|
2015-04-02 16:15:58 +00:00
|
|
|
if !bytes.Equal(calculatedMAC, mac) {
|
2015-05-24 01:42:10 +00:00
|
|
|
return nil, nil, errors.New("Decryption failed: MAC mismatch")
|
2014-12-31 14:39:33 +00:00
|
|
|
}
|
2015-04-02 16:15:58 +00:00
|
|
|
|
2016-02-21 18:40:27 +00:00
|
|
|
plainText, err := aesCBCDecrypt(Keccak256(derivedKey[:16])[:16], cipherText, iv)
|
2015-04-02 16:15:58 +00:00
|
|
|
if err != nil {
|
2015-01-25 01:07:20 +00:00
|
|
|
return nil, nil, err
|
2015-01-15 16:45:45 +00:00
|
|
|
}
|
2015-04-02 16:15:58 +00:00
|
|
|
return plainText, keyId, err
|
2015-01-15 16:45:45 +00:00
|
|
|
}
|
2015-05-24 01:42:10 +00:00
|
|
|
|
|
|
|
func getKDFKey(cryptoJSON cryptoJSON, auth string) ([]byte, error) {
|
|
|
|
authArray := []byte(auth)
|
|
|
|
salt, err := hex.DecodeString(cryptoJSON.KDFParams["salt"].(string))
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
dkLen := ensureInt(cryptoJSON.KDFParams["dklen"])
|
|
|
|
|
|
|
|
if cryptoJSON.KDF == "scrypt" {
|
|
|
|
n := ensureInt(cryptoJSON.KDFParams["n"])
|
|
|
|
r := ensureInt(cryptoJSON.KDFParams["r"])
|
|
|
|
p := ensureInt(cryptoJSON.KDFParams["p"])
|
|
|
|
return scrypt.Key(authArray, salt, n, r, p, dkLen)
|
|
|
|
|
|
|
|
} else if cryptoJSON.KDF == "pbkdf2" {
|
|
|
|
c := ensureInt(cryptoJSON.KDFParams["c"])
|
|
|
|
prf := cryptoJSON.KDFParams["prf"].(string)
|
|
|
|
if prf != "hmac-sha256" {
|
|
|
|
return nil, fmt.Errorf("Unsupported PBKDF2 PRF: ", prf)
|
|
|
|
}
|
|
|
|
key := pbkdf2.Key(authArray, salt, c, dkLen, sha256.New)
|
|
|
|
return key, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil, fmt.Errorf("Unsupported KDF: ", cryptoJSON.KDF)
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: can we do without this when unmarshalling dynamic JSON?
|
|
|
|
// why do integers in KDF params end up as float64 and not int after
|
|
|
|
// unmarshal?
|
|
|
|
func ensureInt(x interface{}) int {
|
|
|
|
res, ok := x.(int)
|
|
|
|
if !ok {
|
|
|
|
res = int(x.(float64))
|
|
|
|
}
|
|
|
|
return res
|
|
|
|
}
|