]> git.cryptolib.org Git - avr-crypto-lib.git/blobdiff - ecdsa/ecc.h
fixing ecdsa signature generation (stupid me confused p and n)
[avr-crypto-lib.git] / ecdsa / ecc.h
index a38f32d4a48bf234064c2f59d36ce406597adb57..652b50ad0d97df1bc1f96f89d427ee9284e3b7c1 100644 (file)
@@ -42,6 +42,7 @@ typedef union __attribute__((packed)){
 
 typedef struct {
     bigint_t *p;
+    bigint_t *n;
     bigint_t *b;
     int (*reduce_p)(bigint_t*);
 } ecc_curve_sp_t;