summaryrefslogtreecommitdiffstats
path: root/crypto/bn/bn_lcl.h
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>2000-12-02 07:28:43 +0000
committerUlf Möller <ulf@openssl.org>2000-12-02 07:28:43 +0000
commit52a1bab2d9891810618569e6c744375b768fce8c (patch)
tree74d989ab4d71ed0fc1e4a891de56ed8d778954ba /crypto/bn/bn_lcl.h
parent0826c85f4c453b5fd3af1ed08e52d0179d58029d (diff)
Fix bn_cmp_part_words() and move it to bn_lib.c.
Diffstat (limited to 'crypto/bn/bn_lcl.h')
-rw-r--r--crypto/bn/bn_lcl.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/crypto/bn/bn_lcl.h b/crypto/bn/bn_lcl.h
index ccfe7bc40a..96f0087c59 100644
--- a/crypto/bn/bn_lcl.h
+++ b/crypto/bn/bn_lcl.h
@@ -402,6 +402,8 @@ void bn_sqr_normal(BN_ULONG *r, const BN_ULONG *a, int n, BN_ULONG *tmp);
void bn_sqr_comba8(BN_ULONG *r,const BN_ULONG *a);
void bn_sqr_comba4(BN_ULONG *r,const BN_ULONG *a);
int bn_cmp_words(const BN_ULONG *a,const BN_ULONG *b,int n);
+int bn_cmp_part_words(const BN_ULONG *a, const BN_ULONG *b,
+ int cl, int dl);
void bn_mul_recursive(BN_ULONG *r,BN_ULONG *a,BN_ULONG *b,int n2,BN_ULONG *t);
void bn_mul_part_recursive(BN_ULONG *r,BN_ULONG *a,BN_ULONG *b,
int tn, int n,BN_ULONG *t);