summaryrefslogtreecommitdiffstats
path: root/meta-perl/recipes-perl/libnet/files/0001-libnet-ssleay-perl-Disable-test-that-fails-with-open.patch
diff options
context:
space:
mode:
authorArmin Kuster <akuster808@gmail.com>2017-03-15 02:35:37 -0700
committerMartin Jansa <Martin.Jansa@gmail.com>2017-03-22 13:31:31 +0100
commitb3ddf559a241cba5a4a4f9ac9314dd501b45c6cc (patch)
tree21d477db4ebefb918d318bfd0f42bd8af7ad3cdc /meta-perl/recipes-perl/libnet/files/0001-libnet-ssleay-perl-Disable-test-that-fails-with-open.patch
parent6c584374a599f6f8d3607f20ecfc13a67ccf1da1 (diff)
downloadmeta-openembedded-b3ddf559a241cba5a4a4f9ac9314dd501b45c6cc.tar.gz
libnet-ssleay-perl: Update to 1.80
Updated LICENSE to reflect actual on website Fixes musl compile error. addresses many compatability issue with the newer openssl drop to backported patch now in this version http://cpansearch.perl.org/src/MIKEM/Net-SSLeay-1.80/Changes Signed-off-by: Armin Kuster <akuster808@gmail.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-perl/recipes-perl/libnet/files/0001-libnet-ssleay-perl-Disable-test-that-fails-with-open.patch')
-rw-r--r--meta-perl/recipes-perl/libnet/files/0001-libnet-ssleay-perl-Disable-test-that-fails-with-open.patch70
1 files changed, 0 insertions, 70 deletions
diff --git a/meta-perl/recipes-perl/libnet/files/0001-libnet-ssleay-perl-Disable-test-that-fails-with-open.patch b/meta-perl/recipes-perl/libnet/files/0001-libnet-ssleay-perl-Disable-test-that-fails-with-open.patch
deleted file mode 100644
index 393ee19194..0000000000
--- a/meta-perl/recipes-perl/libnet/files/0001-libnet-ssleay-perl-Disable-test-that-fails-with-open.patch
+++ /dev/null
@@ -1,70 +0,0 @@
1From e7a2d3a57fd51f0d4d5b3fcb6669b1876d4b18d2 Mon Sep 17 00:00:00 2001
2From: Hongxu Jia <hongxu.jia@windriver.com>
3Date: Tue, 10 Nov 2015 01:23:18 -0500
4Subject: [PATCH 1/2] libnet-ssleay-perl: Disable test that fails with
5 openssl-1.0.2b or above
6
7Run testsuits:
8t/local/33_x509_create_cert............NOK 39/123
9not ok 39 - PEM_get_string_PrivateKey+passwd+enc_alg
10| Failed test 'PEM_get_string_PrivateKey+passwd+enc_alg'
11| at t/local/33_x509_create_cert.t line 104.
12| undef
13| doesn't match '(?^:-----BEGIN (ENCRYPTED|RSA) PRIVATE KEY-----)'
14
15This is due to the following change in OpenSSL:
16(git://git.openssl.org/openssl.git)
17......
184d9dc0c269be87b92da188df1fbd8bfee4700eb3 is the first bad commit
19commit 4d9dc0c269be87b92da188df1fbd8bfee4700eb3
20Author: Dr. Stephen Henson <steve@openssl.org>
21Date: Thu May 28 15:44:20 2015 +0100
22
23check for error when creating PKCS#8 structure
24
25Reviewed-by: Rich Salz <rsalz@openssl.org>
26(cherry picked from commit 2849707fa65d2803e6d1c1603fdd3fd1fdc4c6cc)
27......
28
29Upstream-Status: Backport from upstream latest 1.72:
30http://www.cpan.org/authors/id/M/MI/MIKEM/Net-SSLeay-1.72.tar.gz
31
32Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
33---
34 t/local/33_x509_create_cert.t | 13 ++++++++-----
35 1 file changed, 8 insertions(+), 5 deletions(-)
36
37diff --git a/t/local/33_x509_create_cert.t b/t/local/33_x509_create_cert.t
38index 2f2c013..3e653ce 100755
39--- a/t/local/33_x509_create_cert.t
40+++ b/t/local/33_x509_create_cert.t
41@@ -2,7 +2,7 @@
42
43 use strict;
44 use warnings;
45-use Test::More tests => 123;
46+use Test::More tests => 121;
47 use Net::SSLeay qw/MBSTRING_ASC MBSTRING_UTF8 EVP_PK_RSA EVP_PKT_SIGN EVP_PKT_ENC/;
48 use File::Spec;
49 use utf8;
50@@ -99,10 +99,13 @@ is(Net::SSLeay::X509_NAME_cmp($ca_issuer, $ca_subject), 0, "X509_NAME_cmp");
51 }
52 ok(my $alg1 = Net::SSLeay::EVP_get_cipherbyname("DES-EDE3-CBC"), "EVP_get_cipherbyname");
53 like(my $key_pem3 = Net::SSLeay::PEM_get_string_PrivateKey($pk,"password",$alg1), qr/-----BEGIN (ENCRYPTED|RSA) PRIVATE KEY-----/, "PEM_get_string_PrivateKey+passwd+enc_alg");
54-
55- ok(my $alg2 = Net::SSLeay::EVP_get_cipherbyname("DES-EDE3-OFB"), "EVP_get_cipherbyname");
56- like(my $key_pem4 = Net::SSLeay::PEM_get_string_PrivateKey($pk,"password",$alg2), qr/-----BEGIN (ENCRYPTED|RSA) PRIVATE KEY-----/, "PEM_get_string_PrivateKey+passwd+enc_alg");
57-
58+
59+# DES-EDE3-OFB has no ASN1 support, detected by changes to do_pk8pkey as of openssl 1.0.1n
60+# https://git.openssl.org/?p=openssl.git;a=commit;h=4d9dc0c269be87b92da188df1fbd8bfee4700eb3
61+# this test now fails
62+# ok(my $alg2 = Net::SSLeay::EVP_get_cipherbyname("DES-EDE3-OFB"), "EVP_get_cipherbyname");
63+# like(my $key_pem4 = Net::SSLeay::PEM_get_string_PrivateKey($pk,"password",$alg2), qr/-----BEGIN (ENCRYPTED|RSA) PRIVATE KEY-----/, "PEM_get_string_PrivateKey+passwd+enc_alg");
64+
65 is(Net::SSLeay::X509_NAME_print_ex($name), "O=Company Name,C=UK,CN=Common name text X509", "X509_NAME_print_ex");
66
67 # 2014-06-06: Sigh, some versions of openssl have this patch, which afffects the results of this test:
68--
691.9.1
70