diff options
author | Paul Kehrer <paul.l.kehrer@gmail.com> | 2019-09-09 20:16:49 +0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2019-09-09 07:16:49 -0500 |
commit | 5e671cd7471ba98d55fc425b38abe3d346a46ee1 (patch) | |
tree | abfcf58d79b982c663304efdcfc88bdc0ff5f996 /src | |
parent | 91f81c514d2d4426ba94cda4f6bcb5719843b760 (diff) | |
download | cryptography-5e671cd7471ba98d55fc425b38abe3d346a46ee1.tar.gz cryptography-5e671cd7471ba98d55fc425b38abe3d346a46ee1.tar.bz2 cryptography-5e671cd7471ba98d55fc425b38abe3d346a46ee1.zip |
it's called FIPS_mode_set, not FIPS_set_mode (#4988)
Diffstat (limited to 'src')
-rw-r--r-- | src/cryptography/hazmat/bindings/openssl/_conditional.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cryptography/hazmat/bindings/openssl/_conditional.py b/src/cryptography/hazmat/bindings/openssl/_conditional.py index a2eee181..a39bb668 100644 --- a/src/cryptography/hazmat/bindings/openssl/_conditional.py +++ b/src/cryptography/hazmat/bindings/openssl/_conditional.py @@ -269,7 +269,7 @@ def cryptography_has_evp_pkey_get_set_tls_encodedpoint(): def cryptography_has_fips(): return [ - "FIPS_set_mode", + "FIPS_mode_set", "FIPS_mode", ] |