#include "aes_types.h"
#include <stdint.h>
Go to the source code of this file.
\email bg@ne.nosp@m.rile.nosp@m.x.org
- Author
- Daniel Otte
- Date
- 2008-12-30 \license GPLv3 or later
Definition in file aes_dec.h.
◆ aes128_dec()
decrypt with 128 bit key.
This function decrypts one block with the AES algorithm under control of a keyschedule produced from a 128 bit key.
- Parameters
-
buffer | pointer to the block to decrypt |
ctx | pointer to the key schedule |
Definition at line 135 of file aes_dec.c.
◆ aes192_dec()
decrypt with 192 bit key.
This function decrypts one block with the AES algorithm under control of a keyschedule produced from a 192 bit key.
- Parameters
-
buffer | pointer to the block to decrypt |
ctx | pointer to the key schedule |
Definition at line 139 of file aes_dec.c.
◆ aes256_dec()
decrypt with 256 bit key.
This function decrypts one block with the AES algorithm under control of a keyschedule produced from a 256 bit key.
- Parameters
-
buffer | pointer to the block to decrypt |
ctx | pointer to the key schedule |
Definition at line 143 of file aes_dec.c.