aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/bn/bn_lcl.h
diff options
context:
space:
mode:
authorRich Salz <rsalz@akamai.com>2015-11-21 08:27:46 -0500
committerRich Salz <rsalz@openssl.org>2015-11-30 16:10:12 -0500
commitd59c7c81e3850dc667d61047850c3b6936eb5fca (patch)
treec658a298cab7e2dce4d6c8d24c38fabc60ad8010 /crypto/bn/bn_lcl.h
parent30c7fea496083d41b809db0041e6dfd3ea9cb858 (diff)
downloadopenssl-d59c7c81e3850dc667d61047850c3b6936eb5fca.tar.gz
Remove BN_init
Rename it to be an internal function bn_init. Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to 'crypto/bn/bn_lcl.h')
-rw-r--r--crypto/bn/bn_lcl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/bn/bn_lcl.h b/crypto/bn/bn_lcl.h
index 1a75c10c8d..e4281a34b4 100644
--- a/crypto/bn/bn_lcl.h
+++ b/crypto/bn/bn_lcl.h
@@ -638,10 +638,10 @@ unsigned __int64 _umul128(unsigned __int64 a, unsigned __int64 b,
}
# endif /* !BN_LLONG */
-void BN_init(BIGNUM *a);
void BN_RECP_CTX_init(BN_RECP_CTX *recp);
void BN_MONT_CTX_init(BN_MONT_CTX *ctx);
+void bn_init(BIGNUM *a);
void bn_mul_normal(BN_ULONG *r, BN_ULONG *a, int na, BN_ULONG *b, int nb);
void bn_mul_comba8(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b);
void bn_mul_comba4(BN_ULONG *r, BN_ULONG *a, BN_ULONG *b);