OPENSSL_SYS_WIN32 is important so util/mkdef.pl can detect it
[oweals/openssl.git] / crypto / bn / bn_lcl.h
index df12a01b7a634488b278d0b83af88ae17bf76532..8a4dba375ab2ed0a75e018a274cba2835ca2bbcc 100644 (file)
@@ -120,7 +120,7 @@ extern "C" {
 
 
 /* Used for temp variables */
-#define BN_CTX_NUM     24
+#define BN_CTX_NUM     32
 #define BN_CTX_NUM_POS 12
 struct bignum_ctx
        {
@@ -428,6 +428,8 @@ void bn_mul_low_recursive(BN_ULONG *r,BN_ULONG *a,BN_ULONG *b,int n2,
        BN_ULONG *t);
 void bn_mul_high(BN_ULONG *r,BN_ULONG *a,BN_ULONG *b,BN_ULONG *l,int n2,
        BN_ULONG *t);
+BN_ULONG bn_add_part_words(BN_ULONG *r, const BN_ULONG *a, const BN_ULONG *b,
+       int cl, int dl);
 BN_ULONG bn_sub_part_words(BN_ULONG *r, const BN_ULONG *a, const BN_ULONG *b,
        int cl, int dl);