mirror of
https://github.com/jedisct1/minisign.git
synced 2025-04-04 11:27:42 +03:00
Add the signature algorithm to the checksum
This commit is contained in:
parent
35bf369e5b
commit
cc8548295d
2 changed files with 3 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue