AES encrypt_block. More...
#include "includes.h"
#include "common.h"
#include "aes.h"
Go to the source code of this file.
Functions | |
int | aes_128_encrypt_block (const u8 *key, const u8 *in, u8 *out) |
Perform one AES 128-bit block operation. |
AES encrypt_block.
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License version 2 as published by the Free Software Foundation.
Alternatively, this software may be distributed under the terms of BSD license.
See README and COPYING for more details.
Definition in file aes-encblock.c.
int aes_128_encrypt_block | ( | const u8 * | key, | |
const u8 * | in, | |||
u8 * | out | |||
) |
Perform one AES 128-bit block operation.
key | Key for AES | |
in | Input data (16 bytes) | |
out | Output of the AES block operation (16 bytes) |
Definition at line 30 of file aes-encblock.c.