Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #include "includes.h"
00017
00018 #include "common.h"
00019 #include "aes.h"
00020 #include "aes_wrap.h"
00021
00029 int aes_128_encrypt_block(const u8 *key, const u8 *in, u8 *out)
00030 {
00031 void *ctx;
00032 ctx = aes_encrypt_init(key, 16);
00033 if (ctx == NULL)
00034 return -1;
00035 aes_encrypt(ctx, in, out);
00036 aes_encrypt_deinit(ctx);
00037 return 0;
00038 }