You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Certain tests are failing on linux-s390x because cryptography's OpenSSL backend seemingly does not support SECP256R1 (NIST P-256) on this platform. Running
import cryptography.hazmat.primitives.asymmetric.ec as ec
from cryptography.hazmat.backends.openssl.backend import Backend
backend = Backend()
for alias, curve in ec._CURVE_TYPES.items():
print(f"{alias}: {backend.elliptic_curve_supported(curve)}")
Certain tests are failing on linux-s390x because cryptography's OpenSSL backend seemingly does not support SECP256R1 (NIST P-256) on this platform. Running
yields
This affects the 3.3.1 and 3.4.7 packages. It's a little weird since the OpenSSL and PyOpenSSL packages for linux-s390x do support this curve.
The text was updated successfully, but these errors were encountered: