Skip to content

Commit b8dea0e

Browse files
committed
Update NIST CAVS testing
1 parent 39d0d15 commit b8dea0e

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

test/Jamfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ run test_sha3_384.cpp ;
7171
run test_sha3_256.cpp ;
7272
run test_sha3_224.cpp ;
7373
run test_shake128.cpp ;
74-
#run test_shake256.cpp ;
74+
run test_shake256.cpp ;
7575

7676
#run test_hmac.cpp ;
7777

@@ -144,9 +144,9 @@ run test_nist_cavs_shake128_short_long.cpp ;
144144
run test_nist_cavs_shake128_monte.cpp ;
145145
run test_nist_cavs_shake128_variable_output.cpp ;
146146

147-
#run test_nist_cavs_shake256_short_long.cpp ;
148-
#run test_nist_cavs_shake256_monte.cpp ;
149-
#run test_nist_cavs_shake256_variable_output.cpp ;
147+
run test_nist_cavs_shake256_short_long.cpp ;
148+
run test_nist_cavs_shake256_monte.cpp ;
149+
run test_nist_cavs_shake256_variable_output.cpp ;
150150

151151
#run test_nist_cavs_aes128_kat_ecb.cpp ;
152152
#run test_nist_cavs_aes128_mmt_ecb.cpp ;

test/test_nist_cavs_shake256_monte.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
// Distributed under the Boost Software License, Version 1.0.
44
// https://www.boost.org/LICENSE_1_0.txt
55

6-
#include <boost/crypt/hash/shake256.hpp>
6+
#include <boost/crypt2/hash/shake256.hpp>
77

88
#include "test_nist_cavs_detail.hpp"
99

1010
auto main() -> int
1111
{
12-
bool result_is_ok { true };
12+
bool result_is_ok { true };
1313

1414
{
1515
nist::cavs::test_vector_container_type my_test_vectors_monte { };
@@ -29,5 +29,5 @@ auto main() -> int
2929
BOOST_TEST(result_is_ok);
3030
}
3131

32-
return boost::report_errors();
32+
return boost::report_errors();
3333
}

test/test_nist_cavs_shake256_short_long.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// Distributed under the Boost Software License, Version 1.0.
44
// https://www.boost.org/LICENSE_1_0.txt
55

6-
#include <boost/crypt/hash/shake256.hpp>
6+
#include <boost/crypt2/hash/shake256.hpp>
77

88
#include "test_nist_cavs_detail.hpp"
99

test/test_nist_cavs_shake256_variable_output.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
// Distributed under the Boost Software License, Version 1.0.
44
// https://www.boost.org/LICENSE_1_0.txt
55

6-
#include <boost/crypt/hash/shake256.hpp>
6+
#include <boost/crypt2/hash/shake256.hpp>
77

88
#include "test_nist_cavs_detail.hpp"
99

1010
auto main() -> int
1111
{
12-
bool result_is_ok { true };
12+
bool result_is_ok { true };
1313

1414
{
1515
nist::cavs::test_vector_container_type my_test_vectors_variable { };
@@ -22,5 +22,5 @@ auto main() -> int
2222
BOOST_TEST(result_is_ok);
2323
}
2424

25-
return boost::report_errors();
25+
return boost::report_errors();
2626
}

0 commit comments

Comments
 (0)