diff options
Diffstat (limited to 'cryptography/c/openssl.py')
-rw-r--r-- | cryptography/c/openssl.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/cryptography/c/openssl.py b/cryptography/c/openssl.py new file mode 100644 index 00000000..0fc9d706 --- /dev/null +++ b/cryptography/c/openssl.py @@ -0,0 +1,14 @@ +INCLUDES = [ + '#include "openssl/ssl.h"', +] + +SETUP = [ + 'OpenSSL_add_all_digests', + 'OpenSSL_add_all_ciphers', +] + +FUNCTIONS = [ + "void OpenSSL_add_all_algorithms(void);", + "void OpenSSL_add_all_ciphers(void);", + "void OpenSSL_add_all_digests(void);", +] |