Correctly register AES192 and AES256

This commit is contained in:
Dag-Erling Smørgrav 2015-10-04 07:19:52 +00:00 committed by des
parent aa4a92bac9
commit ab8f712584

View file

@ -609,7 +609,7 @@ cipher_algorithm aes128_cipher = {
};
cipher_algorithm aes192_cipher = {
.name = "aes",
.name = "aes192",
.contextlen = sizeof(aes_ctx),
.blocklen = AES_BLOCK_LEN,
.keylen = 192 / 8,
@ -619,7 +619,7 @@ cipher_algorithm aes192_cipher = {
};
cipher_algorithm aes256_cipher = {
.name = "aes",
.name = "aes256",
.contextlen = sizeof(aes_ctx),
.blocklen = AES_BLOCK_LEN,
.keylen = 256 / 8,