summaryrefslogtreecommitdiff
path: root/src/libcrypto/libaes/aes_cbc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/libcrypto/libaes/aes_cbc.h')
-rw-r--r--src/libcrypto/libaes/aes_cbc.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/libcrypto/libaes/aes_cbc.h b/src/libcrypto/libaes/aes_cbc.h
new file mode 100644
index 000000000..92f5d77f5
--- /dev/null
+++ b/src/libcrypto/libaes/aes_cbc.h
@@ -0,0 +1,4 @@
+/* Glue header */
+#include "aes.h"
+int AES_set_key(aes_context *aes_ctx, const u_int8_t * key, int keysize);
+int AES_cbc_encrypt(aes_context *ctx, const u_int8_t * in, u_int8_t * out, int ilen, const u_int8_t * iv, int encrypt);