2020-05-19 17:30:28 +00:00
|
|
|
# beacon_chain
|
|
|
|
# Copyright (c) 2018 Status Research & Development GmbH
|
|
|
|
# Licensed and distributed under either of
|
|
|
|
# * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT).
|
|
|
|
# * Apache v2 license (license terms in the root directory or at https://www.apache.org/licenses/LICENSE-2.0).
|
|
|
|
# at your option. This file may not be copied, modified, or distributed except according to those terms.
|
|
|
|
|
|
|
|
{.used.}
|
|
|
|
|
|
|
|
import
|
2020-08-02 17:26:57 +00:00
|
|
|
json, unittest,
|
|
|
|
stew/byteutils, blscurve, eth/keys, json_serialization,
|
2020-08-20 13:01:08 +00:00
|
|
|
libp2p/crypto/crypto as lcrypto,
|
|
|
|
nimcrypto/utils as ncrutils,
|
2020-08-02 17:26:57 +00:00
|
|
|
../beacon_chain/spec/[crypto, keystore],
|
|
|
|
./testutil
|
2020-05-19 17:30:28 +00:00
|
|
|
|
|
|
|
from strutils import replace
|
|
|
|
|
2020-08-15 17:33:58 +00:00
|
|
|
func isEqual*(a, b: ValidatorPrivKey): bool =
|
|
|
|
# `==` on secret keys is not allowed
|
|
|
|
let pa = cast[ptr UncheckedArray[byte]](a.unsafeAddr)
|
|
|
|
let pb = cast[ptr UncheckedArray[byte]](b.unsafeAddr)
|
|
|
|
result = true
|
|
|
|
for i in 0 ..< sizeof(a):
|
|
|
|
result = result and pa[i] == pb[i]
|
2020-06-08 14:56:56 +00:00
|
|
|
|
2020-05-19 17:30:28 +00:00
|
|
|
const
|
|
|
|
scryptVector = """{
|
|
|
|
"crypto": {
|
|
|
|
"kdf": {
|
|
|
|
"function": "scrypt",
|
|
|
|
"params": {
|
|
|
|
"dklen": 32,
|
|
|
|
"n": 262144,
|
|
|
|
"p": 1,
|
|
|
|
"r": 8,
|
|
|
|
"salt": "d4e56740f876aef8c010b86a40d5f56745a118d0906a34e69aec8c0db1cb8fa3"
|
|
|
|
},
|
|
|
|
"message": ""
|
|
|
|
},
|
|
|
|
"checksum": {
|
|
|
|
"function": "sha256",
|
|
|
|
"params": {},
|
2020-08-02 18:46:12 +00:00
|
|
|
"message": "d2217fe5f3e9a1e34581ef8a78f7c9928e436d36dacc5e846690a5581e8ea484"
|
2020-05-19 17:30:28 +00:00
|
|
|
},
|
|
|
|
"cipher": {
|
|
|
|
"function": "aes-128-ctr",
|
|
|
|
"params": {
|
|
|
|
"iv": "264daa3f303d7259501c93d997d84fe6"
|
|
|
|
},
|
2020-08-02 18:46:12 +00:00
|
|
|
"message": "06ae90d55fe0a6e9c5c3bc5b170827b2e5cce3929ed3f116c2811e6366dfe20f"
|
2020-05-19 17:30:28 +00:00
|
|
|
}
|
|
|
|
},
|
2020-08-02 17:54:48 +00:00
|
|
|
"description": "This is a test keystore that uses scrypt to secure the secret.",
|
2020-05-19 17:30:28 +00:00
|
|
|
"pubkey": "9612d7a727c9d0a22e185a1c768478dfe919cada9266988cb32359c11f2b7b27f4ae4040902382ae2910c15e2b420d07",
|
|
|
|
"path": "m/12381/60/3141592653/589793238",
|
|
|
|
"uuid": "1d85ae20-35c5-4611-98e8-aa14a633906f",
|
|
|
|
"version": 4
|
2020-08-02 18:46:12 +00:00
|
|
|
}"""
|
2020-05-19 17:30:28 +00:00
|
|
|
|
|
|
|
pbkdf2Vector = """{
|
|
|
|
"crypto": {
|
|
|
|
"kdf": {
|
|
|
|
"function": "pbkdf2",
|
|
|
|
"params": {
|
|
|
|
"dklen": 32,
|
|
|
|
"c": 262144,
|
|
|
|
"prf": "hmac-sha256",
|
|
|
|
"salt": "d4e56740f876aef8c010b86a40d5f56745a118d0906a34e69aec8c0db1cb8fa3"
|
|
|
|
},
|
|
|
|
"message": ""
|
|
|
|
},
|
|
|
|
"checksum": {
|
|
|
|
"function": "sha256",
|
|
|
|
"params": {},
|
2020-08-02 18:46:12 +00:00
|
|
|
"message": "8a9f5d9912ed7e75ea794bc5a89bca5f193721d30868ade6f73043c6ea6febf1"
|
2020-05-19 17:30:28 +00:00
|
|
|
},
|
|
|
|
"cipher": {
|
|
|
|
"function": "aes-128-ctr",
|
|
|
|
"params": {
|
|
|
|
"iv": "264daa3f303d7259501c93d997d84fe6"
|
|
|
|
},
|
2020-08-02 18:46:12 +00:00
|
|
|
"message": "cee03fde2af33149775b7223e7845e4fb2c8ae1792e5f99fe9ecf474cc8c16ad"
|
2020-05-19 17:30:28 +00:00
|
|
|
}
|
|
|
|
},
|
2020-08-02 18:46:12 +00:00
|
|
|
"description": "This is a test keystore that uses PBKDF2 to secure the secret.",
|
2020-05-19 17:30:28 +00:00
|
|
|
"pubkey": "9612d7a727c9d0a22e185a1c768478dfe919cada9266988cb32359c11f2b7b27f4ae4040902382ae2910c15e2b420d07",
|
|
|
|
"path": "m/12381/60/0/0",
|
|
|
|
"uuid": "64625def-3331-4eea-ab6f-782f3ed16a83",
|
|
|
|
"version": 4
|
2020-08-02 18:46:12 +00:00
|
|
|
}"""
|
2020-05-19 17:30:28 +00:00
|
|
|
|
2020-08-20 13:01:08 +00:00
|
|
|
pbkdf2NetVector = """{
|
|
|
|
"crypto":{
|
|
|
|
"kdf":{
|
|
|
|
"function":"pbkdf2",
|
|
|
|
"params":{
|
|
|
|
"dklen":32,
|
|
|
|
"c":262144,
|
|
|
|
"prf":"hmac-sha256",
|
|
|
|
"salt":"d4e56740f876aef8c010b86a40d5f56745a118d0906a34e69aec8c0db1cb8fa3"
|
|
|
|
},
|
|
|
|
"message":""
|
|
|
|
},
|
|
|
|
"checksum":{
|
|
|
|
"function":"sha256",
|
|
|
|
"params":{
|
|
|
|
|
|
|
|
},
|
|
|
|
"message":"3aaebceb5e81cce464d62287414befaa03522eb8f56cad4296c0dc9301e5f091"
|
|
|
|
},
|
|
|
|
"cipher":{
|
|
|
|
"function":"aes-128-ctr",
|
|
|
|
"params":{
|
|
|
|
"iv":"264daa3f303d7259501c93d997d84fe6"
|
|
|
|
},
|
|
|
|
"message":"c6e22dfed4aec458af6e46efff72937972a9360a8b4dc32c8c266de73a90b421d8892db3"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"description":"PBKDF2 Network private key storage",
|
|
|
|
"pubkey":"08021221031873e6f4e1bf837b93493d570653cb219743d4fab0ff468d4e005e1679730b0b",
|
|
|
|
"uuid":"7a053160-1cdf-4faf-a2bb-331e1bc2eb5f",
|
2020-09-30 11:04:54 +00:00
|
|
|
"version":1
|
2020-08-20 13:01:08 +00:00
|
|
|
}"""
|
|
|
|
|
|
|
|
scryptNetVector = """{
|
|
|
|
"crypto":{
|
|
|
|
"kdf":{
|
|
|
|
"function":"scrypt",
|
|
|
|
"params":{
|
|
|
|
"dklen":32,
|
|
|
|
"n":262144,
|
|
|
|
"p":1,
|
|
|
|
"r":8,
|
|
|
|
"salt":"d4e56740f876aef8c010b86a40d5f56745a118d0906a34e69aec8c0db1cb8fa3"
|
|
|
|
},
|
|
|
|
"message":""
|
|
|
|
},
|
|
|
|
"checksum":{
|
|
|
|
"function":"sha256",
|
|
|
|
"params":{
|
|
|
|
|
|
|
|
},
|
|
|
|
"message":"9a7d03a3f2107a11b6e34a081fb13d551012ff081efb81fc94ec114381fa707f"
|
|
|
|
},
|
|
|
|
"cipher":{
|
|
|
|
"function":"aes-128-ctr",
|
|
|
|
"params":{
|
|
|
|
"iv":"264daa3f303d7259501c93d997d84fe6"
|
|
|
|
},
|
|
|
|
"message":"0eac82f5a1bd53f81df688970ffeea8425ad7b8f877bcba5a74b87f090c340836cd52095"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"description":"SCRYPT Network private key storage",
|
|
|
|
"pubkey":"08021221031873e6f4e1bf837b93493d570653cb219743d4fab0ff468d4e005e1679730b0b",
|
|
|
|
"uuid":"83d77fa3-86cb-466a-af11-eeb338b0e258",
|
2020-09-30 11:04:54 +00:00
|
|
|
"version":1
|
2020-08-20 13:01:08 +00:00
|
|
|
}"""
|
2020-08-02 18:46:12 +00:00
|
|
|
password = string.fromBytes hexToSeqByte("7465737470617373776f7264f09f9491")
|
|
|
|
secretBytes = hexToSeqByte "000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f"
|
2020-08-20 13:01:08 +00:00
|
|
|
secretNetBytes = hexToSeqByte "08021220fe442379443d6e2d7d75d3a58f96fbb35f0a9c7217796825fc9040e3b89c5736"
|
2020-08-02 18:46:12 +00:00
|
|
|
salt = hexToSeqByte "d4e56740f876aef8c010b86a40d5f56745a118d0906a34e69aec8c0db1cb8fa3"
|
|
|
|
iv = hexToSeqByte "264daa3f303d7259501c93d997d84fe6"
|
2020-08-02 17:54:48 +00:00
|
|
|
|
2020-07-07 15:51:02 +00:00
|
|
|
let
|
2020-08-20 13:01:08 +00:00
|
|
|
rng = keys.newRng()
|
2020-07-07 15:51:02 +00:00
|
|
|
|
2020-08-20 13:01:08 +00:00
|
|
|
suiteReport "KeyStorage testing suite":
|
2020-06-01 19:48:20 +00:00
|
|
|
setup:
|
|
|
|
let secret = ValidatorPrivKey.fromRaw(secretBytes).get
|
2020-08-20 13:01:08 +00:00
|
|
|
let nsecret = init(lcrypto.PrivateKey, secretNetBytes).get
|
2020-06-01 19:48:20 +00:00
|
|
|
|
2020-08-20 13:01:08 +00:00
|
|
|
timedTest "[PBKDF2] Keystore decryption":
|
2020-08-02 17:26:57 +00:00
|
|
|
let
|
|
|
|
keystore = Json.decode(pbkdf2Vector, Keystore)
|
2020-10-02 15:46:05 +00:00
|
|
|
decrypt = decryptKeystore(keystore, KeystorePass.init password)
|
2020-08-02 17:26:57 +00:00
|
|
|
|
2020-05-19 17:30:28 +00:00
|
|
|
check decrypt.isOk
|
2020-08-15 17:33:58 +00:00
|
|
|
check secret.isEqual(decrypt.get())
|
2020-05-19 17:30:28 +00:00
|
|
|
|
2020-08-20 13:01:08 +00:00
|
|
|
timedTest "[SCRYPT] Keystore decryption":
|
2020-08-02 18:46:12 +00:00
|
|
|
let
|
|
|
|
keystore = Json.decode(scryptVector, Keystore)
|
2020-10-02 15:46:05 +00:00
|
|
|
decrypt = decryptKeystore(keystore, KeystorePass.init password)
|
2020-08-02 18:46:12 +00:00
|
|
|
|
|
|
|
check decrypt.isOk
|
2020-08-15 17:33:58 +00:00
|
|
|
check secret.isEqual(decrypt.get())
|
2020-08-02 18:46:12 +00:00
|
|
|
|
2020-08-20 13:01:08 +00:00
|
|
|
timedTest "[PBKDF2] Network Keystore decryption":
|
|
|
|
let
|
|
|
|
keystore = Json.decode(pbkdf2NetVector, NetKeystore)
|
2020-10-02 15:46:05 +00:00
|
|
|
decrypt = decryptNetKeystore(keystore, KeystorePass.init password)
|
2020-08-20 13:01:08 +00:00
|
|
|
|
|
|
|
check decrypt.isOk
|
|
|
|
check nsecret == decrypt.get()
|
|
|
|
|
|
|
|
timedTest "[SCRYPT] Network Keystore decryption":
|
|
|
|
let
|
|
|
|
keystore = Json.decode(scryptNetVector, NetKeystore)
|
2020-10-02 15:46:05 +00:00
|
|
|
decrypt = decryptNetKeystore(keystore, KeystorePass.init password)
|
2020-08-20 13:01:08 +00:00
|
|
|
|
|
|
|
check decrypt.isOk
|
|
|
|
check nsecret == decrypt.get()
|
|
|
|
|
|
|
|
timedTest "[PBKDF2] Keystore encryption":
|
2020-08-02 17:26:57 +00:00
|
|
|
let keystore = createKeystore(kdfPbkdf2, rng[], secret,
|
2020-10-02 15:46:05 +00:00
|
|
|
KeystorePass.init password,
|
2020-06-01 19:48:20 +00:00
|
|
|
salt=salt, iv=iv,
|
2020-08-02 18:46:12 +00:00
|
|
|
description = "This is a test keystore that uses PBKDF2 to secure the secret.",
|
2020-09-24 05:27:56 +00:00
|
|
|
path = validateKeyPath("m/12381/60/0/0").expect("Valid Keypath"))
|
2020-05-20 05:40:51 +00:00
|
|
|
var
|
2020-08-02 17:26:57 +00:00
|
|
|
encryptJson = parseJson Json.encode(keystore)
|
2020-05-20 05:40:51 +00:00
|
|
|
pbkdf2Json = parseJson(pbkdf2Vector)
|
|
|
|
encryptJson{"uuid"} = %""
|
|
|
|
pbkdf2Json{"uuid"} = %""
|
|
|
|
|
|
|
|
check encryptJson == pbkdf2Json
|
2020-05-19 17:30:28 +00:00
|
|
|
|
2020-08-20 13:01:08 +00:00
|
|
|
timedTest "[PBKDF2] Network Keystore encryption":
|
|
|
|
let nkeystore = createNetKeystore(kdfPbkdf2, rng[], nsecret,
|
2020-10-02 15:46:05 +00:00
|
|
|
KeystorePass.init password,
|
2020-08-20 13:01:08 +00:00
|
|
|
salt = salt, iv = iv,
|
2020-09-30 11:04:54 +00:00
|
|
|
description =
|
|
|
|
"PBKDF2 Network private key storage")
|
2020-08-20 13:01:08 +00:00
|
|
|
var
|
|
|
|
encryptJson = parseJson Json.encode(nkeystore)
|
|
|
|
pbkdf2Json = parseJson(pbkdf2NetVector)
|
|
|
|
encryptJson{"uuid"} = %""
|
|
|
|
pbkdf2Json{"uuid"} = %""
|
|
|
|
check encryptJson == pbkdf2Json
|
|
|
|
|
|
|
|
timedTest "[SCRYPT] Keystore encryption":
|
2020-08-02 18:46:12 +00:00
|
|
|
let keystore = createKeystore(kdfScrypt, rng[], secret,
|
2020-10-02 15:46:05 +00:00
|
|
|
KeystorePass.init password,
|
2020-08-02 18:46:12 +00:00
|
|
|
salt=salt, iv=iv,
|
|
|
|
description = "This is a test keystore that uses scrypt to secure the secret.",
|
2020-09-24 05:27:56 +00:00
|
|
|
path = validateKeyPath("m/12381/60/3141592653/589793238").expect("Valid keypath"))
|
2020-08-02 18:46:12 +00:00
|
|
|
var
|
|
|
|
encryptJson = parseJson Json.encode(keystore)
|
|
|
|
scryptJson = parseJson(scryptVector)
|
|
|
|
encryptJson{"uuid"} = %""
|
|
|
|
scryptJson{"uuid"} = %""
|
|
|
|
|
|
|
|
check encryptJson == scryptJson
|
|
|
|
|
2020-08-20 13:01:08 +00:00
|
|
|
timedTest "[SCRYPT] Network Keystore encryption":
|
|
|
|
let nkeystore = createNetKeystore(kdfScrypt, rng[], nsecret,
|
2020-10-02 15:46:05 +00:00
|
|
|
KeystorePass.init password,
|
2020-08-20 13:01:08 +00:00
|
|
|
salt = salt, iv = iv,
|
2020-09-30 11:04:54 +00:00
|
|
|
description =
|
|
|
|
"SCRYPT Network private key storage")
|
2020-08-20 13:01:08 +00:00
|
|
|
var
|
|
|
|
encryptJson = parseJson Json.encode(nkeystore)
|
|
|
|
pbkdf2Json = parseJson(scryptNetVector)
|
|
|
|
encryptJson{"uuid"} = %""
|
|
|
|
pbkdf2Json{"uuid"} = %""
|
|
|
|
check encryptJson == pbkdf2Json
|
|
|
|
|
2020-05-27 12:14:04 +00:00
|
|
|
timedTest "Pbkdf2 errors":
|
2020-06-01 19:48:20 +00:00
|
|
|
expect Defect:
|
2020-08-02 17:26:57 +00:00
|
|
|
echo createKeystore(kdfPbkdf2, rng[], secret, salt = [byte 1])
|
2020-06-01 19:48:20 +00:00
|
|
|
|
|
|
|
expect Defect:
|
2020-08-02 17:26:57 +00:00
|
|
|
echo createKeystore(kdfPbkdf2, rng[], secret, iv = [byte 1])
|
2020-06-01 19:48:20 +00:00
|
|
|
|
2020-08-02 17:26:57 +00:00
|
|
|
check decryptKeystore(JsonString pbkdf2Vector,
|
2020-10-02 15:46:05 +00:00
|
|
|
KeystorePass.init "wrong pass").isErr
|
2020-06-01 19:48:20 +00:00
|
|
|
|
2020-08-02 17:26:57 +00:00
|
|
|
check decryptKeystore(JsonString pbkdf2Vector,
|
2020-10-02 15:46:05 +00:00
|
|
|
KeystorePass.init "").isErr
|
2020-06-01 19:48:20 +00:00
|
|
|
|
2020-08-02 17:26:57 +00:00
|
|
|
check decryptKeystore(JsonString "{\"a\": 0}",
|
2020-10-02 15:46:05 +00:00
|
|
|
KeystorePass.init "").isErr
|
2020-05-19 17:30:28 +00:00
|
|
|
|
2020-08-02 17:26:57 +00:00
|
|
|
check decryptKeystore(JsonString "",
|
2020-10-02 15:46:05 +00:00
|
|
|
KeystorePass.init "").isErr
|
2020-05-27 12:14:04 +00:00
|
|
|
|
|
|
|
template checkVariant(remove): untyped =
|
2020-08-02 18:46:12 +00:00
|
|
|
check decryptKeystore(JsonString pbkdf2Vector.replace(remove, "1234"),
|
2020-10-02 15:46:05 +00:00
|
|
|
KeystorePass.init password).isErr
|
2020-05-27 12:14:04 +00:00
|
|
|
|
2020-08-02 18:46:12 +00:00
|
|
|
checkVariant "f876" # salt
|
|
|
|
checkVariant "75ea" # checksum
|
|
|
|
checkVariant "b722" # cipher
|
2020-05-27 12:14:04 +00:00
|
|
|
|
|
|
|
var badKdf = parseJson(pbkdf2Vector)
|
|
|
|
badKdf{"crypto", "kdf", "function"} = %"invalid"
|
|
|
|
|
2020-08-02 17:26:57 +00:00
|
|
|
check decryptKeystore(JsonString $badKdf,
|
2020-10-02 15:46:05 +00:00
|
|
|
KeystorePass.init password).iserr
|