diff options
author | Jason A. Donenfeld <Jason@zx2c4.com> | 2018-09-24 22:02:13 +0200 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2018-09-25 03:01:21 +0200 |
commit | 28d8b7eafe49450ef1bd20939334baebbea0a367 (patch) | |
tree | 5404d3b10c4141d31f23bb2e21ef0c73814308d0 /contrib | |
parent | hchacha20: keep in native endian in words (diff) | |
download | wireguard-monolithic-historical-28d8b7eafe49450ef1bd20939334baebbea0a367.tar.xz wireguard-monolithic-historical-28d8b7eafe49450ef1bd20939334baebbea0a367.zip |
crypto: make constant naming scheme consistent
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/examples/keygen-html/src/curve25519_generate.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/examples/keygen-html/src/curve25519_generate.c b/contrib/examples/keygen-html/src/curve25519_generate.c index c280b89..50d35de 100644 --- a/contrib/examples/keygen-html/src/curve25519_generate.c +++ b/contrib/examples/keygen-html/src/curve25519_generate.c @@ -10,7 +10,7 @@ typedef unsigned int u32; typedef unsigned char u8; typedef u32 __le32; -enum { CURVE25519_POINT_SIZE = 32 }; +enum { CURVE25519_KEY_SIZE = 32 }; #ifndef __always_inline #define __always_inline __inline __attribute__((__always_inline__)) @@ -37,7 +37,7 @@ enum { CURVE25519_POINT_SIZE = 32 }; /* We don't even attempt to deal with this in javascript. */ #define memzero_explicit(a, b) -static __always_inline void normalize_secret(u8 secret[CURVE25519_POINT_SIZE]) +static __always_inline void normalize_secret(u8 secret[CURVE25519_KEY_SIZE]) { secret[0] &= 248; secret[31] &= 127; |