| 
									
										
										
										
											2014-12-31 15:39:33 +01:00
										 |  |  | /* | 
					
						
							|  |  |  | 	This file is part of go-ethereum | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	go-ethereum is free software: you can redistribute it and/or modify | 
					
						
							|  |  |  | 	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. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	go-ethereum is distributed in the hope that it will be useful, | 
					
						
							|  |  |  | 	but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  | 	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  | 	GNU General Public License for more details. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	You should have received a copy of the GNU Lesser General Public License | 
					
						
							|  |  |  | 	along with go-ethereum.  If not, see <http://www.gnu.org/licenses/>. | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | /** | 
					
						
							|  |  |  |  * @authors | 
					
						
							|  |  |  |  * 	Gustav Simonsson <gustav.simonsson@gmail.com> | 
					
						
							|  |  |  |  * @date 2015 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2015-02-17 13:05:58 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-12-31 15:39:33 +01:00
										 |  |  | /* | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-15 19:58:38 +01: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 15:39:33 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-24 03:42:10 +02:00
										 |  |  | The crypto is documented at https://github.com/ethereum/wiki/wiki/Web3-Secret-Storage-Definition | 
					
						
							| 
									
										
										
										
											2014-12-31 15:39:33 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | package crypto | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							|  |  |  | 	"bytes" | 
					
						
							|  |  |  | 	"crypto/aes" | 
					
						
							| 
									
										
										
										
											2015-05-24 03:42:10 +02:00
										 |  |  | 	"crypto/sha256" | 
					
						
							| 
									
										
										
										
											2015-04-21 17:00:30 +02:00
										 |  |  | 	"encoding/hex" | 
					
						
							| 
									
										
										
										
											2014-12-31 15:39:33 +01:00
										 |  |  | 	"encoding/json" | 
					
						
							|  |  |  | 	"errors" | 
					
						
							| 
									
										
										
										
											2015-05-24 03:42:10 +02:00
										 |  |  | 	"fmt" | 
					
						
							| 
									
										
										
										
											2015-01-15 17:45:45 +01:00
										 |  |  | 	"io" | 
					
						
							| 
									
										
										
										
											2014-12-31 15:39:33 +01:00
										 |  |  | 	"os" | 
					
						
							| 
									
										
										
										
											2015-05-12 14:24:11 +02:00
										 |  |  | 	"path/filepath" | 
					
						
							| 
									
										
										
										
											2015-05-24 03:42:10 +02:00
										 |  |  | 	"reflect" | 
					
						
							| 
									
										
										
										
											2015-02-17 13:05:58 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	"code.google.com/p/go-uuid/uuid" | 
					
						
							| 
									
										
										
										
											2015-04-02 21:14:25 +02:00
										 |  |  | 	"github.com/ethereum/go-ethereum/common" | 
					
						
							| 
									
										
										
										
											2015-02-17 13:05:58 +01:00
										 |  |  | 	"github.com/ethereum/go-ethereum/crypto/randentropy" | 
					
						
							| 
									
										
										
										
											2015-05-24 03:42:10 +02:00
										 |  |  | 	"golang.org/x/crypto/pbkdf2" | 
					
						
							| 
									
										
										
										
											2015-02-17 13:05:58 +01:00
										 |  |  | 	"golang.org/x/crypto/scrypt" | 
					
						
							| 
									
										
										
										
											2014-12-31 15:39:33 +01:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-07 16:06:26 +01:00
										 |  |  | const ( | 
					
						
							| 
									
										
										
										
											2015-05-24 03:42:10 +02:00
										 |  |  | 	keyHeaderKDF = "scrypt" | 
					
						
							| 
									
										
										
										
											2015-01-07 16:06:26 +01:00
										 |  |  | 	// 2^18 / 8 / 1 uses 256MB memory and approx 1s CPU time on a modern CPU. | 
					
						
							|  |  |  | 	scryptN     = 1 << 18 | 
					
						
							|  |  |  | 	scryptr     = 8 | 
					
						
							|  |  |  | 	scryptp     = 1 | 
					
						
							|  |  |  | 	scryptdkLen = 32 | 
					
						
							|  |  |  | ) | 
					
						
							| 
									
										
										
										
											2014-12-31 15:39:33 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-07 16:06:26 +01:00
										 |  |  | type keyStorePassphrase struct { | 
					
						
							| 
									
										
										
										
											2014-12-31 15:39:33 +01:00
										 |  |  | 	keysDirPath string | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-07 16:06:26 +01:00
										 |  |  | func NewKeyStorePassphrase(path string) KeyStore2 { | 
					
						
							| 
									
										
										
										
											2015-01-19 22:12:22 +01:00
										 |  |  | 	return &keyStorePassphrase{path} | 
					
						
							| 
									
										
										
										
											2015-01-07 16:06:26 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-15 17:45:45 +01:00
										 |  |  | func (ks keyStorePassphrase) GenerateNewKey(rand io.Reader, auth string) (key *Key, err error) { | 
					
						
							|  |  |  | 	return GenerateNewKeyDefault(ks, rand, auth) | 
					
						
							| 
									
										
										
										
											2014-12-31 15:39:33 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-02 21:14:25 +02:00
										 |  |  | func (ks keyStorePassphrase) GetKey(keyAddr common.Address, auth string) (key *Key, err error) { | 
					
						
							| 
									
										
										
										
											2015-05-24 03:42:10 +02:00
										 |  |  | 	keyBytes, keyId, err := DecryptKeyFromFile(ks, keyAddr, auth) | 
					
						
							| 
									
										
										
										
											2015-01-07 16:06:26 +01:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return nil, err | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-01-19 20:24:30 +01:00
										 |  |  | 	key = &Key{ | 
					
						
							| 
									
										
										
										
											2015-01-25 02:07:20 +01:00
										 |  |  | 		Id:         uuid.UUID(keyId), | 
					
						
							|  |  |  | 		Address:    keyAddr, | 
					
						
							| 
									
										
										
										
											2015-01-19 22:12:22 +01:00
										 |  |  | 		PrivateKey: ToECDSA(keyBytes), | 
					
						
							| 
									
										
										
										
											2015-01-19 20:24:30 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-01-07 16:06:26 +01:00
										 |  |  | 	return key, err | 
					
						
							| 
									
										
										
										
											2014-12-31 15:39:33 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-02 21:14:25 +02:00
										 |  |  | func (ks keyStorePassphrase) GetKeyAddresses() (addresses []common.Address, err error) { | 
					
						
							| 
									
										
										
										
											2015-01-25 02:07:20 +01:00
										 |  |  | 	return GetKeyAddresses(ks.keysDirPath) | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-07 16:06:26 +01:00
										 |  |  | func (ks keyStorePassphrase) StoreKey(key *Key, auth string) (err error) { | 
					
						
							| 
									
										
										
										
											2014-12-31 15:39:33 +01:00
										 |  |  | 	authArray := []byte(auth) | 
					
						
							| 
									
										
										
										
											2015-04-02 17:02:56 +02:00
										 |  |  | 	salt := randentropy.GetEntropyCSPRNG(32) | 
					
						
							| 
									
										
										
										
											2014-12-31 15:39:33 +01:00
										 |  |  | 	derivedKey, err := scrypt.Key(authArray, salt, scryptN, scryptr, scryptp, scryptdkLen) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2015-01-07 16:06:26 +01:00
										 |  |  | 		return err | 
					
						
							| 
									
										
										
										
											2014-12-31 15:39:33 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-24 03:42:10 +02:00
										 |  |  | 	encryptKey := derivedKey[:16] | 
					
						
							| 
									
										
										
										
											2014-12-31 15:39:33 +01:00
										 |  |  | 	keyBytes := FromECDSA(key.PrivateKey) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-24 03:42:10 +02:00
										 |  |  | 	iv := randentropy.GetEntropyCSPRNG(aes.BlockSize) // 16 | 
					
						
							|  |  |  | 	cipherText, err := aesCTRXOR(encryptKey, keyBytes, iv) | 
					
						
							| 
									
										
										
										
											2014-12-31 15:39:33 +01:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2015-01-07 16:06:26 +01:00
										 |  |  | 		return err | 
					
						
							| 
									
										
										
										
											2014-12-31 15:39:33 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-10 20:30:02 +02:00
										 |  |  | 	mac := Sha3(derivedKey[16:32], cipherText) | 
					
						
							| 
									
										
										
										
											2015-04-15 13:24:12 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-24 03:42:10 +02:00
										 |  |  | 	scryptParamsJSON := make(map[string]interface{}, 5) | 
					
						
							|  |  |  | 	scryptParamsJSON["n"] = scryptN | 
					
						
							|  |  |  | 	scryptParamsJSON["r"] = scryptr | 
					
						
							|  |  |  | 	scryptParamsJSON["p"] = scryptp | 
					
						
							|  |  |  | 	scryptParamsJSON["dklen"] = scryptdkLen | 
					
						
							|  |  |  | 	scryptParamsJSON["salt"] = hex.EncodeToString(salt) | 
					
						
							| 
									
										
										
										
											2015-04-15 13:24:12 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-10 20:30:02 +02:00
										 |  |  | 	cipherParamsJSON := cipherparamsJSON{ | 
					
						
							|  |  |  | 		IV: hex.EncodeToString(iv), | 
					
						
							| 
									
										
										
										
											2015-04-15 13:24:12 +02:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-10 20:30:02 +02:00
										 |  |  | 	cryptoStruct := cryptoJSON{ | 
					
						
							| 
									
										
										
										
											2015-05-24 03:42:10 +02:00
										 |  |  | 		Cipher:       "aes-128-ctr", | 
					
						
							| 
									
										
										
										
											2015-05-10 20:30:02 +02:00
										 |  |  | 		CipherText:   hex.EncodeToString(cipherText), | 
					
						
							|  |  |  | 		CipherParams: cipherParamsJSON, | 
					
						
							|  |  |  | 		KDF:          "scrypt", | 
					
						
							|  |  |  | 		KDFParams:    scryptParamsJSON, | 
					
						
							|  |  |  | 		MAC:          hex.EncodeToString(mac), | 
					
						
							| 
									
										
										
										
											2014-12-31 15:39:33 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-05-24 03:42:10 +02:00
										 |  |  | 	encryptedKeyJSONV3 := encryptedKeyJSONV3{ | 
					
						
							| 
									
										
										
										
											2015-04-21 17:00:30 +02:00
										 |  |  | 		hex.EncodeToString(key.Address[:]), | 
					
						
							| 
									
										
										
										
											2015-05-10 20:30:02 +02:00
										 |  |  | 		cryptoStruct, | 
					
						
							|  |  |  | 		key.Id.String(), | 
					
						
							|  |  |  | 		version, | 
					
						
							| 
									
										
										
										
											2014-12-31 15:39:33 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-05-24 03:42:10 +02:00
										 |  |  | 	keyJSON, err := json.Marshal(encryptedKeyJSONV3) | 
					
						
							| 
									
										
										
										
											2014-12-31 15:39:33 +01:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2015-01-07 16:06:26 +01:00
										 |  |  | 		return err | 
					
						
							| 
									
										
										
										
											2014-12-31 15:39:33 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-01-25 02:07:20 +01:00
										 |  |  | 	return WriteKeyFile(key.Address, ks.keysDirPath, keyJSON) | 
					
						
							| 
									
										
										
										
											2014-12-31 15:39:33 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-02 21:14:25 +02:00
										 |  |  | func (ks keyStorePassphrase) DeleteKey(keyAddr common.Address, auth string) (err error) { | 
					
						
							| 
									
										
										
										
											2014-12-31 15:39:33 +01:00
										 |  |  | 	// only delete if correct passphrase is given | 
					
						
							| 
									
										
										
										
											2015-05-24 03:42:10 +02:00
										 |  |  | 	_, _, err = DecryptKeyFromFile(ks, keyAddr, auth) | 
					
						
							| 
									
										
										
										
											2014-12-31 15:39:33 +01:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2015-01-07 16:06:26 +01:00
										 |  |  | 		return err | 
					
						
							| 
									
										
										
										
											2014-12-31 15:39:33 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-04-21 17:00:30 +02:00
										 |  |  | 	keyDirPath := filepath.Join(ks.keysDirPath, hex.EncodeToString(keyAddr[:])) | 
					
						
							| 
									
										
										
										
											2015-01-07 16:06:26 +01:00
										 |  |  | 	return os.RemoveAll(keyDirPath) | 
					
						
							| 
									
										
										
										
											2014-12-31 15:39:33 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-24 03:42:10 +02:00
										 |  |  | func DecryptKeyFromFile(ks keyStorePassphrase, keyAddr common.Address, auth string) (keyBytes []byte, keyId []byte, err error) { | 
					
						
							| 
									
										
										
										
											2015-01-25 02:07:20 +01:00
										 |  |  | 	fileContent, err := GetKeyFile(ks.keysDirPath, keyAddr) | 
					
						
							| 
									
										
										
										
											2014-12-31 15:39:33 +01:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2015-01-25 02:07:20 +01:00
										 |  |  | 		return nil, nil, err | 
					
						
							| 
									
										
										
										
											2014-12-31 15:39:33 +01:00
										 |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-24 03:42:10 +02:00
										 |  |  | 	m := make(map[string]interface{}) | 
					
						
							|  |  |  | 	err = json.Unmarshal(fileContent, &m) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	v := reflect.ValueOf(m["version"]) | 
					
						
							|  |  |  | 	if v.Kind() == reflect.String && v.String() == "1" { | 
					
						
							|  |  |  | 		k := new(encryptedKeyJSONV1) | 
					
						
							|  |  |  | 		err := json.Unmarshal(fileContent, k) | 
					
						
							|  |  |  | 		if err != nil { | 
					
						
							|  |  |  | 			return nil, nil, err | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		return decryptKeyV1(k, auth) | 
					
						
							|  |  |  | 	} else { | 
					
						
							|  |  |  | 		k := new(encryptedKeyJSONV3) | 
					
						
							|  |  |  | 		err := json.Unmarshal(fileContent, k) | 
					
						
							|  |  |  | 		if err != nil { | 
					
						
							|  |  |  | 			return nil, nil, err | 
					
						
							|  |  |  | 		} | 
					
						
							|  |  |  | 		return decryptKeyV3(k, auth) | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2014-12-31 15:39:33 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-24 03:42:10 +02: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 17:00:30 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-24 03:42:10 +02:00
										 |  |  | 	keyId = uuid.Parse(keyProtected.Id) | 
					
						
							| 
									
										
										
										
											2015-04-21 17:00:30 +02:00
										 |  |  | 	mac, err := hex.DecodeString(keyProtected.Crypto.MAC) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return nil, nil, err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-10 20:30:02 +02:00
										 |  |  | 	iv, err := hex.DecodeString(keyProtected.Crypto.CipherParams.IV) | 
					
						
							| 
									
										
										
										
											2015-04-21 17:00:30 +02: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 15:39:33 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-24 03:42:10 +02:00
										 |  |  | 	derivedKey, err := getKDFKey(keyProtected.Crypto, auth) | 
					
						
							| 
									
										
										
										
											2015-04-15 13:24:12 +02:00
										 |  |  | 	if err != nil { | 
					
						
							|  |  |  | 		return nil, nil, err | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-24 03:42:10 +02:00
										 |  |  | 	calculatedMAC := Sha3(derivedKey[16:32], cipherText) | 
					
						
							|  |  |  | 	if !bytes.Equal(calculatedMAC, mac) { | 
					
						
							|  |  |  | 		return nil, nil, errors.New("Decryption failed: MAC mismatch") | 
					
						
							|  |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-04-15 13:24:12 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-24 03:42:10 +02: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 15:39:33 +01:00
										 |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2015-01-25 02:07:20 +01:00
										 |  |  | 		return nil, nil, err | 
					
						
							| 
									
										
										
										
											2014-12-31 15:39:33 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-04-02 18:15:58 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-05-10 20:30:02 +02:00
										 |  |  | 	calculatedMAC := Sha3(derivedKey[16:32], cipherText) | 
					
						
							| 
									
										
										
										
											2015-04-02 18:15:58 +02:00
										 |  |  | 	if !bytes.Equal(calculatedMAC, mac) { | 
					
						
							| 
									
										
										
										
											2015-05-24 03:42:10 +02:00
										 |  |  | 		return nil, nil, errors.New("Decryption failed: MAC mismatch") | 
					
						
							| 
									
										
										
										
											2014-12-31 15:39:33 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-04-02 18:15:58 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	plainText, err := aesCBCDecrypt(Sha3(derivedKey[:16])[:16], cipherText, iv) | 
					
						
							|  |  |  | 	if err != nil { | 
					
						
							| 
									
										
										
										
											2015-01-25 02:07:20 +01:00
										 |  |  | 		return nil, nil, err | 
					
						
							| 
									
										
										
										
											2015-01-15 17:45:45 +01:00
										 |  |  | 	} | 
					
						
							| 
									
										
										
										
											2015-04-02 18:15:58 +02:00
										 |  |  | 	return plainText, keyId, err | 
					
						
							| 
									
										
										
										
											2015-01-15 17:45:45 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2015-05-24 03:42:10 +02: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 | 
					
						
							|  |  |  | } |