From c1c4fc1f3397db2226f285502dffa3353ff740d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rob=20N=20=E2=98=85?= Date: Sun, 4 Dec 2022 20:12:01 +1100 Subject: [PATCH] chapoly: also check chacha20-poly1305 in zfs/zpool create tests MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Rob N ★ --- .../cli_root/zfs_create/zfs_create_crypt_combos.ksh | 6 ++++-- .../cli_root/zpool_create/zpool_create_crypt_combos.ksh | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/tests/zfs-tests/tests/functional/cli_root/zfs_create/zfs_create_crypt_combos.ksh b/tests/zfs-tests/tests/functional/cli_root/zfs_create/zfs_create_crypt_combos.ksh index 758b800c2fe8..b2eb63320a63 100755 --- a/tests/zfs-tests/tests/functional/cli_root/zfs_create/zfs_create_crypt_combos.ksh +++ b/tests/zfs-tests/tests/functional/cli_root/zfs_create/zfs_create_crypt_combos.ksh @@ -50,7 +50,8 @@ set -A ENCRYPTION_ALGS \ "encryption=aes-256-ccm" \ "encryption=aes-128-gcm" \ "encryption=aes-192-gcm" \ - "encryption=aes-256-gcm" + "encryption=aes-256-gcm" \ + "encryption=chacha20-poly1305" set -A ENCRYPTION_PROPS \ "encryption=aes-256-gcm" \ @@ -59,7 +60,8 @@ set -A ENCRYPTION_PROPS \ "encryption=aes-256-ccm" \ "encryption=aes-128-gcm" \ "encryption=aes-192-gcm" \ - "encryption=aes-256-gcm" + "encryption=aes-256-gcm" \ + "encryption=chacha20-poly1305" set -A KEYFORMATS "keyformat=raw" \ "keyformat=hex" \ diff --git a/tests/zfs-tests/tests/functional/cli_root/zpool_create/zpool_create_crypt_combos.ksh b/tests/zfs-tests/tests/functional/cli_root/zpool_create/zpool_create_crypt_combos.ksh index 63391e8adb49..6a2cbbaac7bf 100755 --- a/tests/zfs-tests/tests/functional/cli_root/zpool_create/zpool_create_crypt_combos.ksh +++ b/tests/zfs-tests/tests/functional/cli_root/zpool_create/zpool_create_crypt_combos.ksh @@ -46,7 +46,8 @@ set -A ENCRYPTION_ALGS "encryption=on" \ "encryption=aes-256-ccm" \ "encryption=aes-128-gcm" \ "encryption=aes-192-gcm" \ - "encryption=aes-256-gcm" + "encryption=aes-256-gcm" \ + "encryption=chacha20-poly1305" set -A ENCRYPTION_PROPS "encryption=aes-256-gcm" \ "encryption=aes-128-ccm" \ @@ -54,7 +55,8 @@ set -A ENCRYPTION_PROPS "encryption=aes-256-gcm" \ "encryption=aes-256-ccm" \ "encryption=aes-128-gcm" \ "encryption=aes-192-gcm" \ - "encryption=aes-256-gcm" + "encryption=aes-256-gcm" \ + "encryption=chacha20-poly1305" set -A KEYFORMATS "keyformat=raw" \ "keyformat=hex" \