summaryrefslogtreecommitdiff
path: root/test.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2019-10-12 07:14:38 -0400
committerGitHub <noreply@github.com>2019-10-12 07:14:38 -0400
commit76c29eadafc2a4df656a6505b58293ef4cfa3288 (patch)
treee7131043045caecc7aa6ece37ec2befdfcb8df52 /test.cpp
parent85ecff46093ff8f3da4efd8b5d840b8bb7d681ce (diff)
downloadcryptopp-git-76c29eadafc2a4df656a6505b58293ef4cfa3288.tar.gz
Add XTS block cipher mode of operation (GH #891, PR #892)
Diffstat (limited to 'test.cpp')
-rw-r--r--test.cpp20
1 files changed, 11 insertions, 9 deletions
diff --git a/test.cpp b/test.cpp
index 4cc5605f..660a5676 100644
--- a/test.cpp
+++ b/test.cpp
@@ -1010,15 +1010,17 @@ bool Validate(int alg, bool thorough)
case 80: result = ValidateVMAC(); break;
case 81: result = ValidateCCM(); break;
case 82: result = ValidateGCM(); break;
- case 83: result = ValidateCMAC(); break;
- case 84: result = ValidateSM3(); break;
- case 85: result = ValidateBLAKE2s(); break;
- case 86: result = ValidateBLAKE2b(); break;
- case 87: result = ValidatePoly1305(); break;
- case 88: result = ValidateSipHash(); break;
- case 89: result = ValidateHashDRBG(); break;
- case 90: result = ValidateHmacDRBG(); break;
- case 91: result = ValidateNaCl(); break;
+ case 83: result = ValidateXTS(); break;
+ case 84: result = ValidateCMAC(); break;
+ case 85: result = ValidateSM3(); break;
+ case 86: result = ValidateBLAKE2s(); break;
+ case 87: result = ValidateBLAKE2b(); break;
+ case 88: result = ValidatePoly1305(); break;
+ case 89: result = ValidateSipHash(); break;
+ case 90: result = ValidateHashDRBG(); break;
+ case 91: result = ValidateHmacDRBG(); break;
+ case 92: result = ValidateNaCl(); break;
+
case 100: result = ValidateCHAM(); break;
case 101: result = ValidateSIMECK(); break;
case 102: result = ValidateSIMON(); break;