diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2014-04-24 03:33:09 +0200 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2014-04-24 03:33:09 +0200 |
commit | e8296fbc9f88154830a68a0a7d53aa38f93cbd66 (patch) | |
tree | 9484285e61f9b68073295f025f885939772e66dd /src/protocols/ec25519_fhmqvc/ec25519_fhmqvc.h | |
parent | 4872dd03e73aac434d735782417e40ca33336dac (diff) | |
download | fastd-e8296fbc9f88154830a68a0a7d53aa38f93cbd66.tar fastd-e8296fbc9f88154830a68a0a7d53aa38f93cbd66.zip |
ec25519-fhmqvc: use PUBLICKEYBYTES and SECRETKEYBYTES defines more
Diffstat (limited to 'src/protocols/ec25519_fhmqvc/ec25519_fhmqvc.h')
-rw-r--r-- | src/protocols/ec25519_fhmqvc/ec25519_fhmqvc.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/protocols/ec25519_fhmqvc/ec25519_fhmqvc.h b/src/protocols/ec25519_fhmqvc/ec25519_fhmqvc.h index 468a7b2..e7c80e0 100644 --- a/src/protocols/ec25519_fhmqvc/ec25519_fhmqvc.h +++ b/src/protocols/ec25519_fhmqvc/ec25519_fhmqvc.h @@ -34,6 +34,10 @@ #include <libuecc/ecc.h> +#define PUBLICKEYBYTES 32 +#define SECRETKEYBYTES 32 + + typedef union aligned_int256 { ecc_int256_t int256; uint32_t u32[8]; @@ -96,7 +100,7 @@ bool fastd_protocol_ec25519_fhmqvc_describe_peer(const fastd_peer_t *peer, char static inline void hexdump(char out[65], const unsigned char d[32]) { - int i; + size_t i; for (i = 0; i < 32; i++) snprintf(out+2*i, 3, "%02x", d[i]); } |