Add the signature algorithm to the checksum

This commit is contained in:
Frank Denis 2015-06-08 10:21:39 +02:00
parent 35bf369e5b
commit cc8548295d
2 changed files with 3 additions and 1 deletions

View file

@ -133,4 +133,4 @@ Secret key format
* `keynum_sk`: `<kdf_output> ^ (<key_id> || secret_key> || <checksum>)`
* `key_id`: 8 random bytes
* `secret_key`: Ed25519 secret key
* `checksum`: `Blake2b(<key_id> || <secret_key>)`, 32 bytes
* `checksum`: `Blake2b(<signature_algorithm> || <key_id> || <secret_key>)`, 32 bytes

View file

@ -202,6 +202,8 @@ seckey_chk(unsigned char chk[crypto_generichash_BYTES],
crypto_generichash_state hs;
crypto_generichash_init(&hs, NULL, 0U, sizeof seckey_struct->keynum_sk.chk);
crypto_generichash_update(&hs, seckey_struct->sig_alg,
sizeof seckey_struct->sig_alg);
crypto_generichash_update(&hs, seckey_struct->keynum_sk.keynum,
sizeof seckey_struct->keynum_sk.keynum);
crypto_generichash_update(&hs, seckey_struct->keynum_sk.sk,