diff options
author | Matt Caswell <matt@openssl.org> | 2019-04-03 17:53:22 +0200 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2019-04-19 10:31:54 +0200 |
commit | f4a129bb8dc26488e29b06e06e96a76c93f966be (patch) | |
tree | f0404d2d692d3fb97ba36001d9b1ca5bf162dd81 /providers/default/defltprov.c | |
parent | Add the provider_algs.h internal header file (diff) | |
download | openssl-f4a129bb8dc26488e29b06e06e96a76c93f966be.tar.xz openssl-f4a129bb8dc26488e29b06e06e96a76c93f966be.zip |
Add support in the default provider for 192/128 bit AES ECB
Reviewed-by: Paul Dale <paul.dale@oracle.com>
(Merged from https://github.com/openssl/openssl/pull/8700)
Diffstat (limited to 'providers/default/defltprov.c')
-rw-r--r-- | providers/default/defltprov.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/providers/default/defltprov.c b/providers/default/defltprov.c index 5cfbf695c7..1d98485253 100644 --- a/providers/default/defltprov.c +++ b/providers/default/defltprov.c @@ -57,6 +57,8 @@ static const OSSL_ALGORITHM deflt_digests[] = { static const OSSL_ALGORITHM deflt_ciphers[] = { { "AES-256-ECB", "default=yes", aes256ecb_functions }, + { "AES-192-ECB", "default=yes", aes192ecb_functions }, + { "AES-128-ECB", "default=yes", aes128ecb_functions }, { NULL, NULL, NULL } }; |