X-Git-Url: https://git.cryptolib.org/?a=blobdiff_plain;f=bigint%2Fbigint.h;h=d307cfa6e5f305845846e74a32b53a22d005d933;hb=fb928c1c4c392b9e987631f84f1027af94e05beb;hp=4272aa0c13d63aaef9ebce09f5c20538d618563a;hpb=1cdc772d04bae747c339badaa99f6132eedbcd2f;p=arm-crypto-lib.git diff --git a/bigint/bigint.h b/bigint/bigint.h index 4272aa0..d307cfa 100644 --- a/bigint/bigint.h +++ b/bigint/bigint.h @@ -38,7 +38,7 @@ typedef int64_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;