no no md2
authortedu <tedu@openbsd.org>
Sat, 17 May 2014 15:57:52 +0000 (15:57 +0000)
committertedu <tedu@openbsd.org>
Sat, 17 May 2014 15:57:52 +0000 (15:57 +0000)
lib/libcrypto/evp/evp.h
lib/libcrypto/pkcs7/sign.c
lib/libcrypto/pkcs7/verify.c
lib/libssl/src/apps/progs.h
lib/libssl/src/apps/speed.c
lib/libssl/src/apps/version.c
lib/libssl/src/crypto/evp/evp.h
lib/libssl/src/crypto/pkcs7/sign.c
lib/libssl/src/crypto/pkcs7/verify.c

index 25a495b..5cd1258 100644 (file)
@@ -646,9 +646,6 @@ void BIO_set_cipher(BIO *b, const EVP_CIPHER *c, const unsigned char *k,
 #endif
 
 const EVP_MD *EVP_md_null(void);
-#ifndef OPENSSL_NO_MD2
-const EVP_MD *EVP_md2(void);
-#endif
 #ifndef OPENSSL_NO_MD4
 const EVP_MD *EVP_md4(void);
 #endif
index 8b59885..4316851 100644 (file)
@@ -76,9 +76,6 @@ char *argv[];
        int i;
        int nodetach=0;
 
-#ifndef OPENSSL_NO_MD2
-       EVP_add_digest(EVP_md2());
-#endif
 #ifndef OPENSSL_NO_MD5
        EVP_add_digest(EVP_md5());
 #endif
index b40f260..414f985 100644 (file)
@@ -85,9 +85,6 @@ char *argv[];
 
        bio_err=BIO_new_fp(stderr,BIO_NOCLOSE);
        bio_out=BIO_new_fp(stdout,BIO_NOCLOSE);
-#ifndef OPENSSL_NO_MD2
-       EVP_add_digest(EVP_md2());
-#endif
 #ifndef OPENSSL_NO_MD5
        EVP_add_digest(EVP_md5());
 #endif
index c6f66b5..f3645c7 100644 (file)
@@ -130,10 +130,6 @@ FUNCTION functions[] = {
 #endif
 
        /* Message Digests. */
-#ifndef OPENSSL_NO_MD2
-       { FUNC_TYPE_MD, "md2", dgst_main },
-       { FUNC_TYPE_MD, "mdc2", dgst_main },
-#endif
 #ifndef OPENSSL_NO_MD4
        { FUNC_TYPE_MD, "md4", dgst_main },
 #endif
index c8ed39d..76ab66c 100644 (file)
 #ifndef OPENSSL_NO_IDEA
 #include <openssl/idea.h>
 #endif
-#ifndef OPENSSL_NO_MD2
-#include <openssl/md2.h>
-#endif
 #ifndef OPENSSL_NO_MDC2
 #include <openssl/mdc2.h>
 #endif
@@ -270,9 +267,6 @@ speed_main(int argc, char **argv)
        unsigned rsa_num;
 #endif
        unsigned char md[EVP_MAX_MD_SIZE];
-#ifndef OPENSSL_NO_MD2
-       unsigned char md2[MD2_DIGEST_LENGTH];
-#endif
 #ifndef OPENSSL_NO_MDC2
        unsigned char mdc2[MDC2_DIGEST_LENGTH];
 #endif
@@ -652,11 +646,6 @@ speed_main(int argc, char **argv)
                        j--;    /* Otherwise, -mr gets confused with an
                                 * algorithm. */
                } else
-#ifndef OPENSSL_NO_MD2
-               if (strcmp(*argv, "md2") == 0)
-                       doit[D_MD2] = 1;
-               else
-#endif
 #ifndef OPENSSL_NO_MDC2
                if (strcmp(*argv, "mdc2") == 0)
                        doit[D_MDC2] = 1;
@@ -931,9 +920,6 @@ speed_main(int argc, char **argv)
                        BIO_printf(bio_err, "Error: bad option or value\n");
                        BIO_printf(bio_err, "\n");
                        BIO_printf(bio_err, "Available values:\n");
-#ifndef OPENSSL_NO_MD2
-                       BIO_printf(bio_err, "md2      ");
-#endif
 #ifndef OPENSSL_NO_MDC2
                        BIO_printf(bio_err, "mdc2     ");
 #endif
@@ -1163,18 +1149,6 @@ speed_main(int argc, char **argv)
 #define COUNT(d) (count)
        signal(SIGALRM, sig_done);
 
-#ifndef OPENSSL_NO_MD2
-       if (doit[D_MD2]) {
-               for (j = 0; j < SIZE_NUM; j++) {
-                       print_message(names[D_MD2], c[D_MD2][j], lengths[j]);
-                       Time_F(START);
-                       for (count = 0, run = 1; COND(c[D_MD2][j]); count++)
-                               EVP_Digest(buf, (unsigned long) lengths[j], &(md2[0]), NULL, EVP_md2(), NULL);
-                       d = Time_F(STOP);
-                       print_result(D_MD2, j, count, d);
-               }
-       }
-#endif
 #ifndef OPENSSL_NO_MDC2
        if (doit[D_MDC2]) {
                for (j = 0; j < SIZE_NUM; j++) {
@@ -1914,9 +1888,6 @@ show_res:
                fprintf(stdout, "%s\n", SSLeay_version(SSLEAY_BUILT_ON));
                printf("options:");
                printf("%s ", BN_options());
-#ifndef OPENSSL_NO_MD2
-               printf("%s ", MD2_options());
-#endif
 #ifndef OPENSSL_NO_RC4
                printf("%s ", RC4_options());
 #endif
index bd21f5d..927704b 100644 (file)
 #include <openssl/evp.h>
 #include <openssl/crypto.h>
 #include <openssl/bn.h>
-#ifndef OPENSSL_NO_MD2
-#include <openssl/md2.h>
-#endif
 #ifndef OPENSSL_NO_RC4
 #include <openssl/rc4.h>
 #endif
@@ -188,9 +185,6 @@ version_main(int argc, char **argv)
        if (options) {
                printf("options:  ");
                printf("%s ", BN_options());
-#ifndef OPENSSL_NO_MD2
-               printf("%s ", MD2_options());
-#endif
 #ifndef OPENSSL_NO_RC4
                printf("%s ", RC4_options());
 #endif
index 25a495b..5cd1258 100644 (file)
@@ -646,9 +646,6 @@ void BIO_set_cipher(BIO *b, const EVP_CIPHER *c, const unsigned char *k,
 #endif
 
 const EVP_MD *EVP_md_null(void);
-#ifndef OPENSSL_NO_MD2
-const EVP_MD *EVP_md2(void);
-#endif
 #ifndef OPENSSL_NO_MD4
 const EVP_MD *EVP_md4(void);
 #endif
index 8b59885..4316851 100644 (file)
@@ -76,9 +76,6 @@ char *argv[];
        int i;
        int nodetach=0;
 
-#ifndef OPENSSL_NO_MD2
-       EVP_add_digest(EVP_md2());
-#endif
 #ifndef OPENSSL_NO_MD5
        EVP_add_digest(EVP_md5());
 #endif
index b40f260..414f985 100644 (file)
@@ -85,9 +85,6 @@ char *argv[];
 
        bio_err=BIO_new_fp(stderr,BIO_NOCLOSE);
        bio_out=BIO_new_fp(stdout,BIO_NOCLOSE);
-#ifndef OPENSSL_NO_MD2
-       EVP_add_digest(EVP_md2());
-#endif
 #ifndef OPENSSL_NO_MD5
        EVP_add_digest(EVP_md5());
 #endif