OpenSSL 1.1.1-pre2
This commit is contained in:
@@ -143,11 +143,6 @@ int bn_get_top(const BIGNUM *a)
|
||||
return a->top;
|
||||
}
|
||||
|
||||
void bn_set_top(BIGNUM *a, int top)
|
||||
{
|
||||
a->top = top;
|
||||
}
|
||||
|
||||
int bn_get_dmax(const BIGNUM *a)
|
||||
{
|
||||
return a->dmax;
|
||||
@@ -198,13 +193,3 @@ int bn_set_words(BIGNUM *a, BN_ULONG *words, int num_words)
|
||||
bn_correct_top(a);
|
||||
return 1;
|
||||
}
|
||||
|
||||
size_t bn_sizeof_BIGNUM(void)
|
||||
{
|
||||
return sizeof(BIGNUM);
|
||||
}
|
||||
|
||||
BIGNUM *bn_array_el(BIGNUM *base, int el)
|
||||
{
|
||||
return &base[el];
|
||||
}
|
||||
Reference in New Issue
Block a user