summaryrefslogtreecommitdiff
path: root/lib/libcrypto/libaes/aes_cbc.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libcrypto/libaes/aes_cbc.c')
-rw-r--r--lib/libcrypto/libaes/aes_cbc.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/lib/libcrypto/libaes/aes_cbc.c b/lib/libcrypto/libaes/aes_cbc.c
deleted file mode 100644
index 962dd1a35..000000000
--- a/lib/libcrypto/libaes/aes_cbc.c
+++ /dev/null
@@ -1,13 +0,0 @@
-#ifdef __KERNEL__
-#include <linux/types.h>
-#else
-#include <sys/types.h>
-#endif
-#include "aes_cbc.h"
-#include "cbc_generic.h"
-/* returns bool success */
-int AES_set_key(aes_context *aes_ctx, const u_int8_t *key, int keysize) {
- aes_set_key(aes_ctx, key, keysize, 0);
- return 1;
-}
-CBC_IMPL_BLK16(AES_cbc_encrypt, aes_context, u_int8_t *, aes_encrypt, aes_decrypt);