aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/bn/bn.h
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2000-02-03 01:26:07 +0000
committerBodo Möller <bodo@openssl.org>2000-02-03 01:26:07 +0000
commit7999c65c9bfd80ec0f07f6eb5be5ce2e36927298 (patch)
treec9631f548315d57e6ca05ae6fdafd002058e1632 /crypto/bn/bn.h
parentbfe30e4d1b63c2f00584f26ed8d2ca0c37c480a8 (diff)
downloadopenssl-7999c65c9bfd80ec0f07f6eb5be5ce2e36927298.tar.gz
Some 'const's for BNs.
Diffstat (limited to 'crypto/bn/bn.h')
-rw-r--r--crypto/bn/bn.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/bn/bn.h b/crypto/bn/bn.h
index 63fb9cc6e8..417f3706fb 100644
--- a/crypto/bn/bn.h
+++ b/crypto/bn/bn.h
@@ -356,7 +356,7 @@ int BN_div(BIGNUM *dv, BIGNUM *rem, const BIGNUM *m, const BIGNUM *d,
BN_CTX *ctx);
int BN_mul(BIGNUM *r, BIGNUM *a, BIGNUM *b, BN_CTX *ctx);
int BN_sqr(BIGNUM *r, BIGNUM *a,BN_CTX *ctx);
-BN_ULONG BN_mod_word(BIGNUM *a, BN_ULONG w);
+BN_ULONG BN_mod_word(const BIGNUM *a, BN_ULONG w);
BN_ULONG BN_div_word(BIGNUM *a, BN_ULONG w);
int BN_mul_word(BIGNUM *a, BN_ULONG w);
int BN_add_word(BIGNUM *a, BN_ULONG w);