aboutsummaryrefslogtreecommitdiffstats
path: root/src/_cffi_src/openssl/cryptography.py
diff options
context:
space:
mode:
authorPaul Kehrer <paul.l.kehrer@gmail.com>2018-09-26 13:38:36 -0500
committerAlex Gaynor <alex.gaynor@gmail.com>2018-09-26 14:38:36 -0400
commit1717f8c998b22fbbebec4b5514aee42fb3a2f68d (patch)
tree5992e22e5b74ae27a118b8859388a5e2ab53dbac /src/_cffi_src/openssl/cryptography.py
parent0a7bebfaf710d3691cec311d13be7725af4b93cc (diff)
downloadcryptography-1717f8c998b22fbbebec4b5514aee42fb3a2f68d.tar.gz
cryptography-1717f8c998b22fbbebec4b5514aee42fb3a2f68d.tar.bz2
cryptography-1717f8c998b22fbbebec4b5514aee42fb3a2f68d.zip
add ed25519 bindings (#4476)
* add ed25519 bindings * var name
Diffstat (limited to 'src/_cffi_src/openssl/cryptography.py')
-rw-r--r--src/_cffi_src/openssl/cryptography.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/_cffi_src/openssl/cryptography.py b/src/_cffi_src/openssl/cryptography.py
index 11499884..e16fc57d 100644
--- a/src/_cffi_src/openssl/cryptography.py
+++ b/src/_cffi_src/openssl/cryptography.py
@@ -53,6 +53,8 @@ INCLUDES = """
(OPENSSL_VERSION_NUMBER < 0x10100000 || CRYPTOGRAPHY_IS_LIBRESSL)
#define CRYPTOGRAPHY_OPENSSL_LESS_THAN_110J \
(OPENSSL_VERSION_NUMBER < 0x101000af || CRYPTOGRAPHY_IS_LIBRESSL)
+#define CRYPTOGRAPHY_OPENSSL_LESS_THAN_111 \
+ (OPENSSL_VERSION_NUMBER < 0x10101000 || CRYPTOGRAPHY_IS_LIBRESSL)
"""
TYPES = """
@@ -62,6 +64,7 @@ static const int CRYPTOGRAPHY_OPENSSL_110F_OR_GREATER;
static const int CRYPTOGRAPHY_OPENSSL_LESS_THAN_102I;
static const int CRYPTOGRAPHY_OPENSSL_LESS_THAN_102;
+static const int CRYPTOGRAPHY_OPENSSL_LESS_THAN_111;
static const int CRYPTOGRAPHY_IS_LIBRESSL;
"""