aboutsummaryrefslogtreecommitdiffstats
path: root/lib/crypto/c_src
diff options
context:
space:
mode:
authorSverker Eriksson <[email protected]>2015-12-17 16:05:57 +0100
committerSverker Eriksson <[email protected]>2015-12-17 16:05:57 +0100
commita47b233a0cc0548ac14e1b3eb170d8291e836052 (patch)
treeec107c9ceecf21c121e9ae1d4725f2faff894cc6 /lib/crypto/c_src
parent82be6a3e5589781551ca9170cb212983463f1446 (diff)
parent41e0a3fcbcc39ed1b7d503fc6d648c00f858bd42 (diff)
downloadotp-a47b233a0cc0548ac14e1b3eb170d8291e836052.tar.gz
otp-a47b233a0cc0548ac14e1b3eb170d8291e836052.tar.bz2
otp-a47b233a0cc0548ac14e1b3eb170d8291e836052.zip
Merge branch 'sverk/crypto/aes-ecb-192-bit'
OTP-13207 * sverk/crypto/aes-ecb-192-bit: crypto: Support 192-bit keys for AES ECB
Diffstat (limited to 'lib/crypto/c_src')
-rw-r--r--lib/crypto/c_src/crypto.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/crypto/c_src/crypto.c b/lib/crypto/c_src/crypto.c
index 406dde91ba..c0ab7ba7cd 100644
--- a/lib/crypto/c_src/crypto.c
+++ b/lib/crypto/c_src/crypto.c
@@ -455,6 +455,7 @@ struct cipher_type_t cipher_types[] =
{"aes_cfb8", &EVP_aes_128_cfb8},
{"aes_cfb128", &EVP_aes_128_cfb128},
{"aes_ecb", &EVP_aes_128_ecb, 16},
+ {"aes_ecb", &EVP_aes_192_ecb, 24},
{"aes_ecb", &EVP_aes_256_ecb, 32},
{NULL}
};