Actually, that last change to BN_get_word() was a little too simple.

This commit is contained in:
Geoff Thorpe 2004-06-17 22:05:40 +00:00
parent f18ea6cae9
commit afbe74d386

View file

@ -618,8 +618,10 @@ BN_ULONG BN_get_word(const BIGNUM *a)
{ {
if (a->top > 1) if (a->top > 1)
return BN_MASK2; return BN_MASK2;
else else if (a->top == 1)
return a->d[0]; return a->d[0];
/* a->top == 0 */
return 0;
} }
int BN_set_word(BIGNUM *a, BN_ULONG w) int BN_set_word(BIGNUM *a, BN_ULONG w)