summaryrefslogtreecommitdiffstats
path: root/providers/default/defltprov.c
diff options
context:
space:
mode:
authorShane Lontis <shane.lontis@oracle.com>2019-09-14 09:27:49 +1000
committerShane Lontis <shane.lontis@oracle.com>2019-09-14 09:27:49 +1000
commit3a9f26f3308c5b3e59ec0e589310fd137b0399f6 (patch)
tree7eee906072dbc4679fbb2007ab8bf14f4ee91637 /providers/default/defltprov.c
parent88d870824f1f913877f0f978ae60879575daf56d (diff)
Add aes_xts cipher to providers
Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/9327)
Diffstat (limited to 'providers/default/defltprov.c')
-rw-r--r--providers/default/defltprov.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/providers/default/defltprov.c b/providers/default/defltprov.c
index 3f2ad610a9..e829dbfac0 100644
--- a/providers/default/defltprov.c
+++ b/providers/default/defltprov.c
@@ -114,6 +114,8 @@ static const OSSL_ALGORITHM deflt_ciphers[] = {
{ "AES-256-CTR", "default=yes", aes256ctr_functions },
{ "AES-192-CTR", "default=yes", aes192ctr_functions },
{ "AES-128-CTR", "default=yes", aes128ctr_functions },
+ { "AES-256-XTS", "default=yes", aes256xts_functions },
+ { "AES-128-XTS", "default=yes", aes128xts_functions },
/* TODO(3.0) Add aliases when they are supported */
{ "id-aes256-GCM", "default=yes", aes256gcm_functions },
{ "id-aes192-GCM", "default=yes", aes192gcm_functions },