diff options
author | Bodo Möller <bodo@openssl.org> | 2000-11-30 13:53:53 +0100 |
---|---|---|
committer | Bodo Möller <bodo@openssl.org> | 2000-11-30 13:53:53 +0100 |
commit | 19cda70045acb6e8deba2278c7f9d82c21269826 (patch) | |
tree | 6a2e691018e84b547fba007062dd884ae026a99b /crypto/bn/bn_gcd.c | |
parent | The compression method may be undefined for some reason that has (diff) | |
download | openssl-19cda70045acb6e8deba2278c7f9d82c21269826.tar.xz openssl-19cda70045acb6e8deba2278c7f9d82c21269826.zip |
Corrections to the comments in BN_mod_inverse.
Diffstat (limited to 'crypto/bn/bn_gcd.c')
-rw-r--r-- | crypto/bn/bn_gcd.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/crypto/bn/bn_gcd.c b/crypto/bn/bn_gcd.c index a61ba5ee11..d5caf5136f 100644 --- a/crypto/bn/bn_gcd.c +++ b/crypto/bn/bn_gcd.c @@ -240,7 +240,7 @@ BIGNUM *BN_mod_inverse(BIGNUM *in, /* From B = a mod |n|, A = |n| it follows that * * 0 <= B < A, - * X*a == B (mod |n|), + * sign*X*a == B (mod |n|), * -sign*Y*a == A (mod |n|). */ @@ -250,7 +250,7 @@ BIGNUM *BN_mod_inverse(BIGNUM *in, /* * 0 < B < A, - * (*) X*a == B (mod |n|), + * (*) sign*X*a == B (mod |n|), * -sign*Y*a == A (mod |n|) */ @@ -314,15 +314,15 @@ BIGNUM *BN_mod_inverse(BIGNUM *in, * i.e. * -sign*Y*a - D*A == B (mod |n|). * Similarly, (*) translates into - * X*a == A (mod |n|). + * sign*X*a == A (mod |n|). * * Thus, - * -sign*Y*a - D*X*a == B (mod |n|), + * -sign*Y*a - D*sign*X*a == B (mod |n|), * i.e. - * -sign*(Y + D*X)*a == B (mod |n|). + * -sign*(Y + D*X)*a == B (mod |n|). * * So if we set (X, Y, sign) := (Y + D*X, X, -sign), we arrive back at - * X*a == B (mod |n|), + * sign*X*a == B (mod |n|), * -sign*Y*a == A (mod |n|). * Note that X and Y stay non-negative all the time. */ @@ -361,7 +361,7 @@ BIGNUM *BN_mod_inverse(BIGNUM *in, } /* - * The while loop ends when + * The while loop (Euclid's algorithm) ends when * A == gcd(a,n); * we have * -sign*Y*a == A (mod |n|), |