Age | Commit message (Collapse) | Author |
|
|
|
|
|
Enables support for OpenSSH private keys.
|
|
|
|
It's been unused since cryptography v3.1:
https://github.com/pyca/cryptography/blob/3.3.2/CHANGELOG.rst#31---2020-08-26
|
|
It's been unused since cryptography v2.8:
https://github.com/pyca/cryptography/blob/3.3.2/CHANGELOG.rst#28---2019-10-16
|
|
It's not needed at runtime
|
|
As shown by:
objdump -p pkg/python2-cryptography/usr/lib/python2.7/site-packages/cryptography/hazmat/bindings/_openssl.so | grep NEEDED | sed "s/ NEEDED[ ]*/\/usr\/lib\//" | pacman -Qo -
|
|
Otherwise we end up building against the OpenSSL 3 headers even though this version of cryptography doesn't support OpenSSL 3.
Fixes errors such as:
ImportError: /usr/lib/python2.7/site-packages/cryptography/hazmat/bindings/_openssl.so: undefined symbol: ERR_new
|
|
|