diff options
Diffstat (limited to 'meta-python/recipes-devtools/python')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-m2crypto/0001-Allow-verify_cb_-to-be-called-with-ok-True.patch | 47 | ||||
-rw-r--r-- | meta-python/recipes-devtools/python/python3-m2crypto/0001-Use-of-RSA_SSLV23_PADDING-has-been-deprecated.patch | 29 | ||||
-rw-r--r-- | meta-python/recipes-devtools/python/python3-m2crypto/cross-compile-platform.patch | 4 | ||||
-rw-r--r-- | meta-python/recipes-devtools/python/python3-m2crypto_0.38.0.bb (renamed from meta-python/recipes-devtools/python/python3-m2crypto_0.37.1.bb) | 4 |
4 files changed, 4 insertions, 80 deletions
diff --git a/meta-python/recipes-devtools/python/python3-m2crypto/0001-Allow-verify_cb_-to-be-called-with-ok-True.patch b/meta-python/recipes-devtools/python/python3-m2crypto/0001-Allow-verify_cb_-to-be-called-with-ok-True.patch deleted file mode 100644 index 3c836635a1..0000000000 --- a/meta-python/recipes-devtools/python/python3-m2crypto/0001-Allow-verify_cb_-to-be-called-with-ok-True.patch +++ /dev/null | |||
@@ -1,47 +0,0 @@ | |||
1 | From 73fbd1e646f6bbf202d4418bae80eb9941fbf552 Mon Sep 17 00:00:00 2001 | ||
2 | From: Casey Deccio <casey@deccio.net> | ||
3 | Date: Fri, 8 Jan 2021 12:43:09 -0700 | ||
4 | Subject: [PATCH] Allow verify_cb_* to be called with ok=True | ||
5 | |||
6 | With https://github.com/openssl/openssl/commit/2e06150e3928daa06d5ff70c32bffad8088ebe58 | ||
7 | OpenSSL allowed verificaton to continue on UNABLE_TO_VERIFY_LEAF_SIGNATURE | ||
8 | --- | ||
9 | tests/test_ssl.py | 14 ++++++++++++-- | ||
10 | 1 file changed, 12 insertions(+), 2 deletions(-) | ||
11 | |||
12 | diff --git a/tests/test_ssl.py b/tests/test_ssl.py | ||
13 | index 92b6942..7a3271a 100644 | ||
14 | --- a/tests/test_ssl.py | ||
15 | +++ b/tests/test_ssl.py | ||
16 | @@ -59,8 +59,13 @@ def allocate_srv_port(): | ||
17 | |||
18 | |||
19 | def verify_cb_new_function(ok, store): | ||
20 | - assert not ok | ||
21 | err = store.get_error() | ||
22 | + # If err is X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE, then instead of | ||
23 | + # aborting, this callback is called to retrieve additional error | ||
24 | + # information. In this case, ok might not be False. | ||
25 | + # See https://github.com/openssl/openssl/commit/2e06150e3928daa06d5ff70c32bffad8088ebe58 | ||
26 | + if err != m2.X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE: | ||
27 | + assert not ok | ||
28 | assert err in [m2.X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT, | ||
29 | m2.X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY, | ||
30 | m2.X509_V_ERR_CERT_UNTRUSTED, | ||
31 | @@ -618,7 +623,12 @@ class MiscSSLClientTestCase(BaseSSLClientTestCase): | ||
32 | |||
33 | def verify_cb_old(self, ctx_ptr, x509_ptr, err, depth, ok): | ||
34 | try: | ||
35 | - self.assertFalse(ok) | ||
36 | + # If err is X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE, then instead of | ||
37 | + # aborting, this callback is called to retrieve additional error | ||
38 | + # information. In this case, ok might not be False. | ||
39 | + # See https://github.com/openssl/openssl/commit/2e06150e3928daa06d5ff70c32bffad8088ebe58 | ||
40 | + if err != m2.X509_V_ERR_UNABLE_TO_VERIFY_LEAF_SIGNATURE: | ||
41 | + self.assertFalse(ok) | ||
42 | self.assertIn(err, | ||
43 | [m2.X509_V_ERR_DEPTH_ZERO_SELF_SIGNED_CERT, | ||
44 | m2.X509_V_ERR_UNABLE_TO_GET_ISSUER_CERT_LOCALLY, | ||
45 | -- | ||
46 | 2.29.2 | ||
47 | |||
diff --git a/meta-python/recipes-devtools/python/python3-m2crypto/0001-Use-of-RSA_SSLV23_PADDING-has-been-deprecated.patch b/meta-python/recipes-devtools/python/python3-m2crypto/0001-Use-of-RSA_SSLV23_PADDING-has-been-deprecated.patch deleted file mode 100644 index 2313a324a0..0000000000 --- a/meta-python/recipes-devtools/python/python3-m2crypto/0001-Use-of-RSA_SSLV23_PADDING-has-been-deprecated.patch +++ /dev/null | |||
@@ -1,29 +0,0 @@ | |||
1 | From d06eaa88a5f491827733f32027c46de3557fbd05 Mon Sep 17 00:00:00 2001 | ||
2 | From: =?UTF-8?q?Mat=C4=9Bj=20Cepl?= <mcepl@cepl.eu> | ||
3 | Date: Fri, 19 Feb 2021 15:53:02 +0100 | ||
4 | Subject: [PATCH] Use of RSA_SSLV23_PADDING has been deprecated. | ||
5 | |||
6 | Fixes #293. | ||
7 | --- | ||
8 | tests/test_rsa.py | 5 ----- | ||
9 | 1 file changed, 5 deletions(-) | ||
10 | |||
11 | diff --git a/tests/test_rsa.py b/tests/test_rsa.py | ||
12 | index 3de5016..7299785 100644 | ||
13 | --- a/tests/test_rsa.py | ||
14 | +++ b/tests/test_rsa.py | ||
15 | @@ -124,11 +124,6 @@ class RSATestCase(unittest.TestCase): | ||
16 | ptxt = priv.private_decrypt(ctxt, p) | ||
17 | self.assertEqual(ptxt, self.data) | ||
18 | |||
19 | - # sslv23_padding | ||
20 | - ctxt = priv.public_encrypt(self.data, RSA.sslv23_padding) | ||
21 | - res = priv.private_decrypt(ctxt, RSA.sslv23_padding) | ||
22 | - self.assertEqual(res, self.data) | ||
23 | - | ||
24 | # no_padding | ||
25 | with six.assertRaisesRegex(self, RSA.RSAError, 'data too small'): | ||
26 | priv.public_encrypt(self.data, RSA.no_padding) | ||
27 | -- | ||
28 | 2.29.2 | ||
29 | |||
diff --git a/meta-python/recipes-devtools/python/python3-m2crypto/cross-compile-platform.patch b/meta-python/recipes-devtools/python/python3-m2crypto/cross-compile-platform.patch index f039ae8665..77ef7e557e 100644 --- a/meta-python/recipes-devtools/python/python3-m2crypto/cross-compile-platform.patch +++ b/meta-python/recipes-devtools/python/python3-m2crypto/cross-compile-platform.patch | |||
@@ -6,7 +6,7 @@ Signed-off-by: Khem Raj <raj.khem@gmail.com> | |||
6 | 6 | ||
7 | --- a/setup.py | 7 | --- a/setup.py |
8 | +++ b/setup.py | 8 | +++ b/setup.py |
9 | @@ -169,22 +169,6 @@ class _M2CryptoBuildExt(build_ext.build_ | 9 | @@ -169,24 +169,6 @@ class _M2CryptoBuildExt(build_ext.build_ |
10 | log.debug('self.include_dirs = %s', self.include_dirs) | 10 | log.debug('self.include_dirs = %s', self.include_dirs) |
11 | log.debug('self.library_dirs = %s', self.library_dirs) | 11 | log.debug('self.library_dirs = %s', self.library_dirs) |
12 | 12 | ||
@@ -25,6 +25,8 @@ Signed-off-by: Khem Raj <raj.khem@gmail.com> | |||
25 | - self.swig_opts.append('-D%s' % arch) | 25 | - self.swig_opts.append('-D%s' % arch) |
26 | - if mach in ('ppc64le', 'ppc64el'): | 26 | - if mach in ('ppc64le', 'ppc64el'): |
27 | - self.swig_opts.append('-D_CALL_ELF=2') | 27 | - self.swig_opts.append('-D_CALL_ELF=2') |
28 | - if mach in ('arm64_be'): | ||
29 | - self.swig_opts.append('-D__AARCH64EB__') | ||
28 | - | 30 | - |
29 | self.swig_opts.extend(['-I%s' % i for i in self.include_dirs]) | 31 | self.swig_opts.extend(['-I%s' % i for i in self.include_dirs]) |
30 | 32 | ||
diff --git a/meta-python/recipes-devtools/python/python3-m2crypto_0.37.1.bb b/meta-python/recipes-devtools/python/python3-m2crypto_0.38.0.bb index b3da87fb7e..950de564f2 100644 --- a/meta-python/recipes-devtools/python/python3-m2crypto_0.37.1.bb +++ b/meta-python/recipes-devtools/python/python3-m2crypto_0.38.0.bb | |||
@@ -8,11 +8,9 @@ FILESEXTRAPATHS_prepend := "${THISDIR}/python-m2crypto:" | |||
8 | 8 | ||
9 | SRC_URI += "file://0001-setup.py-link-in-sysroot-not-in-host-directories.patch \ | 9 | SRC_URI += "file://0001-setup.py-link-in-sysroot-not-in-host-directories.patch \ |
10 | file://cross-compile-platform.patch \ | 10 | file://cross-compile-platform.patch \ |
11 | file://0001-Allow-verify_cb_-to-be-called-with-ok-True.patch \ | ||
12 | file://0001-Use-of-RSA_SSLV23_PADDING-has-been-deprecated.patch \ | ||
13 | file://avoid-host-contamination.patch \ | 11 | file://avoid-host-contamination.patch \ |
14 | " | 12 | " |
15 | SRC_URI[sha256sum] = "e4e42f068b78ccbf113e5d0a72ae5f480f6c3ace4940b91e4fff5598cfff6fb3" | 13 | SRC_URI[sha256sum] = "99f2260a30901c949a8dc6d5f82cd5312ffb8abc92e76633baf231bbbcb2decb" |
16 | 14 | ||
17 | PYPI_PACKAGE = "M2Crypto" | 15 | PYPI_PACKAGE = "M2Crypto" |
18 | inherit pypi siteinfo setuptools3 | 16 | inherit pypi siteinfo setuptools3 |