diff options
| author | Benedict <benedict@0xb8000.de> | 2016-03-21 21:32:46 +0100 |
|---|---|---|
| committer | Benedict <benedict@0xb8000.de> | 2017-02-21 13:00:25 +0100 |
| commit | 27a1b8050d2170b40024fe82cb27088f3c676f26 (patch) | |
| tree | c27966b7aeb1e4eb4fe889e6b7fc9a6cd68a5b17 /lib/lib2.h | |
| parent | 95b1e82c4fca864600108d4e36ceadbb290a76f3 (diff) | |
completed set2, challenge 10
Diffstat (limited to 'lib/lib2.h')
| -rw-r--r-- | lib/lib2.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,11 +1,12 @@ #ifndef __LIB2_H__ -#define __LIN2_H__ +#define __LIB2_H__ #include <stdio.h> #include <string.h> #include <stdlib.h> +#include <openssl/aes.h> char *pkcs7_padding(char *string, int length_string, int blocksize); - +int aes_cbc(char *in, int length_in, char *out, unsigned char *string_key, char *init_vector); #endif |
