X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=bigint%2Fbigint.h;h=0966f971f6eedc4fd054acd06dead2b0c9a75f94;hb=d3b4df851c0d7fb1cfe38162c6d0781ba3afa910;hp=2acfdaa5877fdd41db9c94fb5d03330ab6d3864b;hpb=27f4804c185ae24b3b6367bb2fdb898d6692d0f6;p=avr-crypto-lib.git diff --git a/bigint/bigint.h b/bigint/bigint.h index 2acfdaa..0966f97 100644 --- a/bigint/bigint.h +++ b/bigint/bigint.h @@ -38,7 +38,7 @@ typedef int16_t bigint_wordplus_signed_t; #define BIGINT_FBS_MASK (BIGINT_WORD_SIZE-1) /* the last five bits indicate which is the first bit set */ #define BIGINT_NEG_MASK 0x80 /* this bit indicates a negative value */ typedef struct{ - uint16_t length_B; + uint16_t length_W; uint8_t info; bigint_word_t *wordv; /* word vector, pointing to the LSB */ }bigint_t;