Skip to content

Commit

Permalink
[cryptotest] Uncomment hash tests in BUILD file
Browse files Browse the repository at this point in the history
Commenting these out was done accidentally in an previous commit.

Signed-off-by: Ryan Torok <[email protected]>
  • Loading branch information
RyanTorok committed Jun 5, 2024
1 parent c5e7464 commit 3e21972
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions sw/device/tests/crypto/cryptotest/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -102,22 +102,22 @@ HASH_TESTVECTOR_TARGETS = [
msg_type.lower(),
)
for algorithm, src_repo, extra_msg_types in [
# ("SHA256", "sha2_fips_180_4", []),
# ("SHA384", "sha2_fips_180_4", []),
# ("SHA512", "sha2_fips_180_4", []),
# ("SHA3_256", "sha3_fips_202", []),
# ("SHA3_384", "sha3_fips_202", []),
# ("SHA3_512", "sha3_fips_202", []),
# (
# "SHAKE128",
# "shake_fips_202",
# ["VariableOut"],
# ),
# (
# "SHAKE256",
# "shake_fips_202",
# ["VariableOut"],
# ),
("SHA256", "sha2_fips_180_4", []),
("SHA384", "sha2_fips_180_4", []),
("SHA512", "sha2_fips_180_4", []),
("SHA3_256", "sha3_fips_202", []),
("SHA3_384", "sha3_fips_202", []),
("SHA3_512", "sha3_fips_202", []),
(
"SHAKE128",
"shake_fips_202",
["VariableOut"],
),
(
"SHAKE256",
"shake_fips_202",
["VariableOut"],
),
]
for msg_type in [
"ShortMsg",
Expand Down

0 comments on commit 3e21972

Please sign in to comment.