[openssl-commits] [openssl] OpenSSL_1_0_1-stable update

Matt Caswell matt at openssl.org
Thu Feb 26 23:39:18 UTC 2015


The branch OpenSSL_1_0_1-stable has been updated
       via  f3cc3da4478d00a45371ee3f10f39b4956a11270 (commit)
      from  1aff39de763469385952910b4eede431c5c34e61 (commit)


- Log -----------------------------------------------------------------
commit f3cc3da4478d00a45371ee3f10f39b4956a11270
Author: Matt Caswell <matt at openssl.org>
Date:   Thu Feb 26 10:35:50 2015 +0000

    Fix evp_extra_test.c with no-ec
    When OpenSSL is configured with no-ec, then the new evp_extra_test fails to
    pass. This change adds appropriate OPENSSL_NO_EC guards around the code.
    
    Reviewed-by: Tim Hudson <tjh at openssl.org>
    (cherry picked from commit a988036259a4e119f6787b4c585f506226330120)

-----------------------------------------------------------------------

Summary of changes:
 crypto/evp/evp_extra_test.c |    6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/crypto/evp/evp_extra_test.c b/crypto/evp/evp_extra_test.c
index 9f8501c..21688b0 100644
--- a/crypto/evp/evp_extra_test.c
+++ b/crypto/evp/evp_extra_test.c
@@ -209,6 +209,7 @@ static const unsigned char kExampleRSAKeyPKCS8[] = {
     0x08, 0xf1, 0x2d, 0x86, 0x9d, 0xa5, 0x20, 0x1b, 0xe5, 0xdf,
 };
 
+#ifndef OPENSSL_NO_EC
 /*
  * kExampleECKeyDER is a sample EC private key encoded as an ECPrivateKey
  * structure.
@@ -242,6 +243,7 @@ static const unsigned char kExampleBadECKeyDER[] = {
     0xFF, 0xFF, 0xFF, 0xFF, 0xBC, 0xE6, 0xFA, 0xAD, 0xA7, 0x17, 0x9E, 0x84,
     0xF3, 0xB9, 0xCA, 0xC2, 0xFC, 0x63, 0x25, 0x51
 };
+#endif
 
 static EVP_PKEY *load_example_rsa_key(void)
 {
@@ -393,6 +395,7 @@ static int test_d2i_AutoPrivateKey(const unsigned char *input,
     return ret;
 }
 
+#ifndef OPENSSL_NO_EC
 /* Tests loading a bad key in PKCS8 format */
 static int test_EVP_PKCS82PKEY(void)
 {
@@ -427,6 +430,7 @@ static int test_EVP_PKCS82PKEY(void)
 
     return ret;
 }
+#endif
 
 int main(void)
 {
@@ -461,6 +465,7 @@ int main(void)
         return 1;
     }
 
+#ifndef OPENSSL_NO_EC
     if (!test_d2i_AutoPrivateKey(kExampleECKeyDER, sizeof(kExampleECKeyDER),
                                  EVP_PKEY_EC)) {
         fprintf(stderr, "d2i_AutoPrivateKey(kExampleECKeyDER) failed\n");
@@ -471,6 +476,7 @@ int main(void)
         fprintf(stderr, "test_EVP_PKCS82PKEY failed\n");
         return 1;
     }
+#endif
 
     EVP_cleanup();
     CRYPTO_cleanup_all_ex_data();


More information about the openssl-commits mailing list