diff options
Diffstat (limited to 'app/openssl/crypto/bn/bn_gcd.c')
-rw-r--r-- | app/openssl/crypto/bn/bn_gcd.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/openssl/crypto/bn/bn_gcd.c b/app/openssl/crypto/bn/bn_gcd.c index 4a352119..a808f531 100644 --- a/app/openssl/crypto/bn/bn_gcd.c +++ b/app/openssl/crypto/bn/bn_gcd.c @@ -205,6 +205,7 @@ err: /* solves ax == 1 (mod n) */ static BIGNUM *BN_mod_inverse_no_branch(BIGNUM *in, const BIGNUM *a, const BIGNUM *n, BN_CTX *ctx); + BIGNUM *BN_mod_inverse(BIGNUM *in, const BIGNUM *a, const BIGNUM *n, BN_CTX *ctx) { |