mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-11-29 04:04:02 +03:00
Merge pull request #5751 from urbit/peter/urcrypt_ed_veri
urcrypt: correct parameter ordering in urcrypt_ed_veri()
This commit is contained in:
commit
cfcba47d46
@ -39,8 +39,8 @@ void urcrypt_ed_sign(const uint8_t *message,
|
||||
// return value means the signature was (not) verified
|
||||
bool urcrypt_ed_veri(const uint8_t *message,
|
||||
size_t length,
|
||||
const uint8_t signature[64],
|
||||
const uint8_t public[32]);
|
||||
const uint8_t public[32],
|
||||
const uint8_t signature[64]);
|
||||
|
||||
int urcrypt_aes_ecba_en(uint8_t key[16], uint8_t block[16], uint8_t out[16]);
|
||||
int urcrypt_aes_ecba_de(uint8_t key[16], uint8_t block[16], uint8_t out[16]);
|
||||
|
Loading…
Reference in New Issue
Block a user