projects
/
openssl.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
add missing braces
[openssl.git]
/
crypto
/
bn
/
bn_gcd.c
diff --git
a/crypto/bn/bn_gcd.c
b/crypto/bn/bn_gcd.c
index d361ada8b2183be3465698ee78737e3872493692..a61ba5ee11a22723b44d7434a1fb8bcd2b790692 100644
(file)
--- a/
crypto/bn/bn_gcd.c
+++ b/
crypto/bn/bn_gcd.c
@@
-379,9
+379,13
@@
BIGNUM *BN_mod_inverse(BIGNUM *in,
{
/* Y*a == 1 (mod |n|) */
if (BN_ucmp(Y,n) < 0)
+ {
if (!BN_copy(R,Y)) goto err;
+ }
else
+ {
if (!BN_nnmod(R,Y,n,ctx)) goto err;
+ }
}
else
{
@@
-394,4
+398,3
@@
err:
BN_CTX_end(ctx);
return(ret);
}
-