diff options
Diffstat (limited to 'src/_cffi_src/openssl/nid.py')
-rw-r--r-- | src/_cffi_src/openssl/nid.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/_cffi_src/openssl/nid.py b/src/_cffi_src/openssl/nid.py index 226229e9..bf445aa8 100644 --- a/src/_cffi_src/openssl/nid.py +++ b/src/_cffi_src/openssl/nid.py @@ -11,6 +11,7 @@ INCLUDES = """ TYPES = """ static const int Cryptography_HAS_X25519; static const int Cryptography_HAS_X448; +static const int Cryptography_HAS_ED448; static const int Cryptography_HAS_ED25519; static const int NID_undef; @@ -249,4 +250,10 @@ static const int NID_X448 = 0; #else static const long Cryptography_HAS_X448 = 1; #endif +#ifndef NID_ED448 +static const long Cryptography_HAS_ED448 = 0; +static const int NID_ED448 = 0; +#else +static const long Cryptography_HAS_ED448 = 1; +#endif """ |