From d072ec9de1830616a045ad679efbd5c17fe899c7 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Sat, 8 Dec 2012 12:15:49 +0100 Subject: Add the order of the base point to the public API --- src/ec25519_gf.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/ec25519_gf.c b/src/ec25519_gf.c index de9b1a8..f4d81ad 100644 --- a/src/ec25519_gf.c +++ b/src/ec25519_gf.c @@ -37,13 +37,14 @@ #define ASR(n,s) (((n) >> s)|(IS_NEGATIVE(n)*((unsigned)-1) << (8*sizeof(n)-s))) -static const unsigned char q[32] = { +const ecc_int_256 ecc_25519_gf_order = {{ 0xed, 0xd3, 0xf5, 0x5c, 0x1a, 0x63, 0x12, 0x58, 0xd6, 0x9c, 0xf7, 0xa2, 0xde, 0xf9, 0xde, 0x14, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10 -}; +}}; +static const unsigned char *q = ecc_25519_gf_order.p; static void select(unsigned char out[32], const unsigned char r[32], const unsigned char s[32], unsigned int b) { unsigned int j; -- cgit v1.2.3