diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2015-02-19 13:00:19 -0800 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2015-02-19 13:00:19 -0800 |
commit | bae5a64971c70ef25b0e9f6346cf474ca3808180 (patch) | |
tree | 810c8527da7e6c8304320149987811d84670ade4 /src/cryptography/hazmat/bindings/openssl/rand.py | |
parent | 4680b1d3a0dcb44954ed31dbde451acbfb4698fd (diff) | |
parent | 8996f672f2c2fa49ecb59841e0b6bfea17e8ce13 (diff) | |
download | cryptography-bae5a64971c70ef25b0e9f6346cf474ca3808180.tar.gz cryptography-bae5a64971c70ef25b0e9f6346cf474ca3808180.tar.bz2 cryptography-bae5a64971c70ef25b0e9f6346cf474ca3808180.zip |
Merge pull request #1679 from reaperhulk/libre-support
LibreSSL support
Diffstat (limited to 'src/cryptography/hazmat/bindings/openssl/rand.py')
-rw-r--r-- | src/cryptography/hazmat/bindings/openssl/rand.py | 23 |
1 files changed, 19 insertions, 4 deletions
diff --git a/src/cryptography/hazmat/bindings/openssl/rand.py b/src/cryptography/hazmat/bindings/openssl/rand.py index c30af921..6330482c 100644 --- a/src/cryptography/hazmat/bindings/openssl/rand.py +++ b/src/cryptography/hazmat/bindings/openssl/rand.py @@ -9,6 +9,7 @@ INCLUDES = """ """ TYPES = """ +static const long Cryptography_HAS_EGD; """ FUNCTIONS = """ @@ -16,9 +17,6 @@ void ERR_load_RAND_strings(void); void RAND_seed(const void *, int); void RAND_add(const void *, int, double); int RAND_status(void); -int RAND_egd(const char *); -int RAND_egd_bytes(const char *, int); -int RAND_query_egd_bytes(const char *, unsigned char *, int); const char *RAND_file_name(char *, size_t); int RAND_load_file(const char *, long); int RAND_write_file(const char *); @@ -28,9 +26,26 @@ int RAND_pseudo_bytes(unsigned char *, int); """ MACROS = """ +int RAND_egd(const char *); +int RAND_egd_bytes(const char *, int); +int RAND_query_egd_bytes(const char *, unsigned char *, int); """ CUSTOMIZATIONS = """ +#if defined(LIBRESSL_VERSION_NUMBER) +static const long Cryptography_HAS_EGD = 0; +int (*RAND_egd)(const char *) = NULL; +int (*RAND_egd_bytes)(const char *, int) = NULL; +int (*RAND_query_egd_bytes)(const char *, unsigned char *, int) = NULL; +#else +static const long Cryptography_HAS_EGD = 1; +#endif """ -CONDITIONAL_NAMES = {} +CONDITIONAL_NAMES = { + "Cryptography_HAS_EGD": [ + "RAND_egd", + "RAND_egd_bytes", + "RAND_query_egd_bytes", + ] +} |