]> git.ipfire.org Git - thirdparty/openssl.git/blobdiff - crypto/bn/bn_nist.c
Revert the size_t modifications from HEAD that had led to more
[thirdparty/openssl.git] / crypto / bn / bn_nist.c
index 4d07a0d94e19436f110c176d97e85561a67d0884..ea991c95b1ceb37249ddd3c3b336d2fc1cba3018 100644 (file)
@@ -415,8 +415,7 @@ int BN_nist_mod_192(BIGNUM *r, const BIGNUM *a, const BIGNUM *field,
        return 1;
        }
 
-typedef BN_ULONG (*bn_addsub_f)(BN_ULONG *, const BN_ULONG *, const BN_ULONG *,
-                               size_t);
+typedef BN_ULONG (*bn_addsub_f)(BN_ULONG *,const BN_ULONG *,const BN_ULONG *,int);
 
 #define nist_set_224(to, from, a1, a2, a3, a4, a5, a6, a7) \
        { \
@@ -430,7 +429,7 @@ typedef BN_ULONG (*bn_addsub_f)(BN_ULONG *, const BN_ULONG *, const BN_ULONG *,
        }
 
 int BN_nist_mod_224(BIGNUM *r, const BIGNUM *a, const BIGNUM *field,
-                   BN_CTX *ctx)
+       BN_CTX *ctx)
        {
        int     top = a->top, i;
        int     carry;