Change functions to ANSI C.
[openssl.git] / crypto / bn / exptest.c
index 67dc95d72602d20e1a8dda0a3048a6b5b4110ef4..4816344f560904d61ed204b2c05f2d7947c2af8a 100644 (file)
@@ -69,9 +69,7 @@
 
 #define NUM_BITS       (BN_BITS*2)
 
-int main(argc,argv)
-int argc;
-char *argv[];
+int main(int argc, char *argv[])
        {
        BN_CTX *ctx;
        BIO *out=NULL;
@@ -79,6 +77,8 @@ char *argv[];
        unsigned char c;
        BIGNUM *r_mont,*r_recp,*a,*b,*m;
 
+       ERR_load_BN_strings();
+
        ctx=BN_CTX_new();
        if (ctx == NULL) exit(1);
        r_mont=BN_new();
@@ -114,11 +114,19 @@ char *argv[];
 
                ret=BN_mod_exp_mont(r_mont,a,b,m,ctx,NULL);
                if (ret <= 0)
-                       { printf("BN_mod_exp_mont() problems\n"); exit(1); }
+                       {
+                       printf("BN_mod_exp_mont() problems\n");
+                       ERR_print_errors(out);
+                       exit(1);
+                       }
 
                ret=BN_mod_exp_recp(r_recp,a,b,m,ctx);
                if (ret <= 0)
-                       { printf("BN_mod_exp_recp() problems\n"); exit(1); }
+                       {
+                       printf("BN_mod_exp_recp() problems\n");
+                       ERR_print_errors(out);
+                       exit(1);
+                       }
                
                if (BN_cmp(r_mont,r_recp) != 0)
                        {
@@ -137,6 +145,7 @@ char *argv[];
                        fflush(stdout);
                        }
                }
+       CRYPTO_mem_leaks(out);
        printf(" done\n");
        exit(0);
 err: