aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/bn/bn.h
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2008-05-01 18:48:20 +0000
committerBodo Möller <bodo@openssl.org>2008-05-01 18:48:20 +0000
commitd05a474556c627a8e87b32d7e97aa776308dc883 (patch)
tree78cba08766c85fffc1373ad7cf55af01ad8210d1 /crypto/bn/bn.h
parent8a2062fefedde7957f228e274d12155ca8660d4c (diff)
downloadopenssl-d05a474556c627a8e87b32d7e97aa776308dc883.tar.gz
Montgomery-related minor cleanups/documentation
Diffstat (limited to 'crypto/bn/bn.h')
-rw-r--r--crypto/bn/bn.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/crypto/bn/bn.h b/crypto/bn/bn.h
index 56d9f5f16e..65202ae9f2 100644
--- a/crypto/bn/bn.h
+++ b/crypto/bn/bn.h
@@ -315,7 +315,8 @@ struct bn_mont_ctx_st
BIGNUM N; /* The modulus */
BIGNUM Ni; /* R*(1/R mod N) - N*Ni = 1
* (Ni is only stored for bignum algorithm) */
- BN_ULONG n0[2];/* least significant word(s) of Ni */
+ BN_ULONG n0[2];/* least significant word(s) of Ni;
+ (type changed with 0.9.9, was "BN_ULONG n0;" before) */
int flags;
};