Skip to content

Commit

Permalink
Run AES-192-GCM in CAVP tests.
Browse files Browse the repository at this point in the history
Change-Id: I8fbba51ac650c648893fcd21da5c3018cd7810be
Reviewed-on: https://boringssl-review.googlesource.com/c/boringssl/+/38426
Commit-Queue: David Benjamin <[email protected]>
Reviewed-by: David Benjamin <[email protected]>
  • Loading branch information
agl authored and CQ bot account: [email protected] committed Oct 22, 2019
1 parent 3ba9586 commit de1d288
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions util/fipstools/cavp/cavp_aes_gcm_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ struct TestCtx {
static const EVP_AEAD *GetAEAD(const std::string &name, const bool enc) {
if (name == "aes-128-gcm") {
return EVP_aead_aes_128_gcm();
} else if (name == "aes-192-gcm") {
return EVP_aead_aes_192_gcm();
} else if (name == "aes-256-gcm") {
return EVP_aead_aes_256_gcm();
}
Expand Down
2 changes: 2 additions & 0 deletions util/fipstools/cavp/run_cavp.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,10 @@ var aesGCMTests = testSuite{
nil,
[]test{
{"gcmDecrypt128", []string{"dec", "aes-128-gcm"}, false},
{"gcmDecrypt192", []string{"dec", "aes-192-gcm"}, false},
{"gcmDecrypt256", []string{"dec", "aes-256-gcm"}, false},
{"gcmEncryptExtIV128", []string{"enc", "aes-128-gcm"}, false},
{"gcmEncryptExtIV192", []string{"enc", "aes-192-gcm"}, false},
{"gcmEncryptExtIV256", []string{"enc", "aes-256-gcm"}, false},
},
}
Expand Down

0 comments on commit de1d288

Please sign in to comment.