mirror of
https://github.com/cryb-to/cryb-to.git
synced 2025-01-03 10:21:10 +00:00
Correctly register AES192 and AES256
This commit is contained in:
parent
aa4a92bac9
commit
ab8f712584
1 changed files with 2 additions and 2 deletions
|
@ -609,7 +609,7 @@ cipher_algorithm aes128_cipher = {
|
||||||
};
|
};
|
||||||
|
|
||||||
cipher_algorithm aes192_cipher = {
|
cipher_algorithm aes192_cipher = {
|
||||||
.name = "aes",
|
.name = "aes192",
|
||||||
.contextlen = sizeof(aes_ctx),
|
.contextlen = sizeof(aes_ctx),
|
||||||
.blocklen = AES_BLOCK_LEN,
|
.blocklen = AES_BLOCK_LEN,
|
||||||
.keylen = 192 / 8,
|
.keylen = 192 / 8,
|
||||||
|
@ -619,7 +619,7 @@ cipher_algorithm aes192_cipher = {
|
||||||
};
|
};
|
||||||
|
|
||||||
cipher_algorithm aes256_cipher = {
|
cipher_algorithm aes256_cipher = {
|
||||||
.name = "aes",
|
.name = "aes256",
|
||||||
.contextlen = sizeof(aes_ctx),
|
.contextlen = sizeof(aes_ctx),
|
||||||
.blocklen = AES_BLOCK_LEN,
|
.blocklen = AES_BLOCK_LEN,
|
||||||
.keylen = 256 / 8,
|
.keylen = 256 / 8,
|
||||||
|
|
Loading…
Reference in a new issue