Loading Makefile.org +0 −2 Original line number Diff line number Diff line Loading @@ -5,8 +5,6 @@ VERSION = 0.9.2b PLATFORM=dist # NOCONST - Define for C compilers that don't like the const key word. # NOPROTO - Define in if your compiler does not support prototypes. # RSAref - Define if we are to link with RSAref. # NO_IDEA - Define to build without the IDEA algorithm # NO_RC4 - Define to build without the RC4 algorithm Loading crypto/bf/bftest.c +4 −4 Original line number Diff line number Diff line Loading @@ -362,11 +362,11 @@ static int test(void) printf("BF_encrypt error encrypting\n"); printf("got :"); for (i=0; i<2; i++) printf("%08lX ",data[i]); printf("%08lX ",(unsigned long)data[i]); printf("\n"); printf("expected:"); for (i=0; i<2; i++) printf("%08lX ",bf_cipher[n][i]); printf("%08lX ",(unsigned long)bf_cipher[n][i]); err=1; printf("\n"); } Loading @@ -377,11 +377,11 @@ static int test(void) printf("BF_encrypt error decrypting\n"); printf("got :"); for (i=0; i<2; i++) printf("%08lX ",data[i]); printf("%08lX ",(unsigned long)data[i]); printf("\n"); printf("expected:"); for (i=0; i<2; i++) printf("%08lX ",bf_plain[n][i]); printf("%08lX ",(unsigned long)bf_plain[n][i]); printf("\n"); err=1; } Loading crypto/sha/sha1dgst.c +1 −1 Original line number Diff line number Diff line Loading @@ -82,7 +82,7 @@ char *SHA1_version="SHA1" OPENSSL_VERSION_PTEXT; #ifndef NOPROTO # ifdef SHA1_ASM void sha1_block_x86(SHA_CTX *c, register unsigned long *p, int num); void sha1_block_x86(SHA_CTX *c, register SHA_LONG *p, int num); # define sha1_block sha1_block_x86 # else void sha1_block(SHA_CTX *c, register SHA_LONG *p, int num); Loading Loading
Makefile.org +0 −2 Original line number Diff line number Diff line Loading @@ -5,8 +5,6 @@ VERSION = 0.9.2b PLATFORM=dist # NOCONST - Define for C compilers that don't like the const key word. # NOPROTO - Define in if your compiler does not support prototypes. # RSAref - Define if we are to link with RSAref. # NO_IDEA - Define to build without the IDEA algorithm # NO_RC4 - Define to build without the RC4 algorithm Loading
crypto/bf/bftest.c +4 −4 Original line number Diff line number Diff line Loading @@ -362,11 +362,11 @@ static int test(void) printf("BF_encrypt error encrypting\n"); printf("got :"); for (i=0; i<2; i++) printf("%08lX ",data[i]); printf("%08lX ",(unsigned long)data[i]); printf("\n"); printf("expected:"); for (i=0; i<2; i++) printf("%08lX ",bf_cipher[n][i]); printf("%08lX ",(unsigned long)bf_cipher[n][i]); err=1; printf("\n"); } Loading @@ -377,11 +377,11 @@ static int test(void) printf("BF_encrypt error decrypting\n"); printf("got :"); for (i=0; i<2; i++) printf("%08lX ",data[i]); printf("%08lX ",(unsigned long)data[i]); printf("\n"); printf("expected:"); for (i=0; i<2; i++) printf("%08lX ",bf_plain[n][i]); printf("%08lX ",(unsigned long)bf_plain[n][i]); printf("\n"); err=1; } Loading
crypto/sha/sha1dgst.c +1 −1 Original line number Diff line number Diff line Loading @@ -82,7 +82,7 @@ char *SHA1_version="SHA1" OPENSSL_VERSION_PTEXT; #ifndef NOPROTO # ifdef SHA1_ASM void sha1_block_x86(SHA_CTX *c, register unsigned long *p, int num); void sha1_block_x86(SHA_CTX *c, register SHA_LONG *p, int num); # define sha1_block sha1_block_x86 # else void sha1_block(SHA_CTX *c, register SHA_LONG *p, int num); Loading