X-Git-Url: https://git.cryptolib.org/?p=avr-crypto-lib.git;a=blobdiff_plain;f=ecdsa%2Fecc.h;h=df613f63fd762e7c6dbe4fb669232bb7147ba2f9;hp=a38f32d4a48bf234064c2f59d36ce406597adb57;hb=4b5da1dc27a791b5c448274a3db09cd035b33493;hpb=3a9f9d918fb95474996af535c225a7e187d88372 diff --git a/ecdsa/ecc.h b/ecdsa/ecc.h index a38f32d..df613f6 100644 --- a/ecdsa/ecc.h +++ b/ecdsa/ecc.h @@ -1,7 +1,7 @@ /* ecc.h */ /* This file is part of the AVR-Crypto-Lib. - Copyright (C) 2012 Daniel Otte (daniel.otte@rub.de) + Copyright (C) 2006-2015 Daniel Otte (bg@nerilex.org) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -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;