diff options
author | David Benjamin <davidben@davidben.net> | 2018-05-14 16:09:36 -0400 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2018-05-14 16:09:36 -0400 |
commit | db131983f4e6ae6c2ec34072fbff0e30d967c8c7 (patch) | |
tree | 81e628372d8ddf54b55ab1211deefc7fba94b9b4 | |
parent | 6639dd15a7847fae731b29ce01f98cba79757838 (diff) | |
download | cryptography-db131983f4e6ae6c2ec34072fbff0e30d967c8c7.tar.gz cryptography-db131983f4e6ae6c2ec34072fbff0e30d967c8c7.tar.bz2 cryptography-db131983f4e6ae6c2ec34072fbff0e30d967c8c7.zip |
Remove some unused RAND bindings. (#4239)
These are unused. (And not especially useful.)
-rw-r--r-- | src/_cffi_src/openssl/rand.py | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/_cffi_src/openssl/rand.py b/src/_cffi_src/openssl/rand.py index 089da8b3..68653927 100644 --- a/src/_cffi_src/openssl/rand.py +++ b/src/_cffi_src/openssl/rand.py @@ -13,12 +13,8 @@ static const long Cryptography_HAS_EGD; """ FUNCTIONS = """ -void RAND_seed(const void *, int); void RAND_add(const void *, int, double); int RAND_status(void); -const char *RAND_file_name(char *, size_t); -int RAND_load_file(const char *, long); -int RAND_write_file(const char *); int RAND_bytes(unsigned char *, int); /* ERR_load_RAND_strings started returning an int in 1.1.0. Unfortunately we can't declare a conditional signature like that. Since it always returns |