mirror of
https://github.com/ansible-collections/community.crypto.git
synced 2026-05-07 22:03:01 +00:00
[stable-1] openssl_pkcs12: handle pyOpenSSL 23.3.0, which removed PKCS#12 support (#668)
* Handle pyOpenSSL 23.3.0, which removed PKCS#12 support (at least partially). (#666)
(cherry picked from commit d1299c11d6)
* Try to fix FreeBSD 13.1 failures in CI.
This commit is contained in:
@@ -65,7 +65,10 @@
|
||||
vars:
|
||||
select_crypto_backend: pyopenssl
|
||||
|
||||
when: pyopenssl_version.stdout is version('0.15', '>=')
|
||||
when: >-
|
||||
pyopenssl_version.stdout is version('0.15', '>=')
|
||||
and
|
||||
pyopenssl_version.stdout is version('23.3.0', '<')
|
||||
|
||||
- block:
|
||||
- name: Running tests with cryptography backend
|
||||
@@ -75,4 +78,11 @@
|
||||
|
||||
when: cryptography_version.stdout is version('3.0', '>=')
|
||||
|
||||
when: pyopenssl_version.stdout is version('0.15', '>=') or cryptography_version.stdout is version('3.0', '>=')
|
||||
when: >-
|
||||
(
|
||||
pyopenssl_version.stdout is version('0.15', '>=')
|
||||
and
|
||||
pyopenssl_version.stdout is version('23.3.0', '<')
|
||||
)
|
||||
or
|
||||
cryptography_version.stdout is version('3.0', '>=')
|
||||
|
||||
@@ -43,6 +43,8 @@ system_python_version_data:
|
||||
- '3.8'
|
||||
'13.0':
|
||||
- '3.7'
|
||||
'13.1':
|
||||
- '3.8'
|
||||
RedHat:
|
||||
'7':
|
||||
- '2.7'
|
||||
|
||||
Reference in New Issue
Block a user