aboutsummaryrefslogtreecommitdiffstats
path: root/cryptography/bindings/openssl/evp.py
diff options
context:
space:
mode:
Diffstat (limited to 'cryptography/bindings/openssl/evp.py')
-rw-r--r--cryptography/bindings/openssl/evp.py32
1 files changed, 17 insertions, 15 deletions
diff --git a/cryptography/bindings/openssl/evp.py b/cryptography/bindings/openssl/evp.py
index 7795e935..8d2230fd 100644
--- a/cryptography/bindings/openssl/evp.py
+++ b/cryptography/bindings/openssl/evp.py
@@ -12,25 +12,27 @@
# limitations under the License.
INCLUDES = """
- #include <openssl/evp.h>
+#include <openssl/evp.h>
"""
TYPES = """
- typedef struct { ...; } EVP_CIPHER_CTX;
- typedef ... EVP_CIPHER;
- typedef ... ENGINE;
+typedef struct {
+ ...;
+} EVP_CIPHER_CTX;
+typedef ... EVP_CIPHER;
+typedef ... ENGINE;
"""
FUNCTIONS = """
- void OpenSSL_add_all_algorithms();
- const EVP_CIPHER *EVP_get_cipherbyname(const char *);
- int EVP_EncryptInit_ex(EVP_CIPHER_CTX *, const EVP_CIPHER *,
- ENGINE *, unsigned char *, unsigned char *);
- int EVP_CIPHER_CTX_set_padding(EVP_CIPHER_CTX *, int);
- int EVP_EncryptUpdate(EVP_CIPHER_CTX *, unsigned char *, int *,
- unsigned char *, int);
- int EVP_EncryptFinal_ex(EVP_CIPHER_CTX *, unsigned char *, int *);
- int EVP_CIPHER_CTX_cleanup(EVP_CIPHER_CTX *);
- const EVP_CIPHER *EVP_CIPHER_CTX_cipher(const EVP_CIPHER_CTX *);
- int EVP_CIPHER_block_size(const EVP_CIPHER *);
+void OpenSSL_add_all_algorithms();
+const EVP_CIPHER *EVP_get_cipherbyname(const char *);
+int EVP_EncryptInit_ex(EVP_CIPHER_CTX *, const EVP_CIPHER *, ENGINE *,
+ unsigned char *, unsigned char *);
+int EVP_CIPHER_CTX_set_padding(EVP_CIPHER_CTX *, int);
+int EVP_EncryptUpdate(EVP_CIPHER_CTX *, unsigned char *, int *,
+ unsigned char *, int);
+int EVP_EncryptFinal_ex(EVP_CIPHER_CTX *, unsigned char *, int *);
+int EVP_CIPHER_CTX_cleanup(EVP_CIPHER_CTX *);
+const EVP_CIPHER *EVP_CIPHER_CTX_cipher(const EVP_CIPHER_CTX *);
+int EVP_CIPHER_block_size(const EVP_CIPHER *);
"""