Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/poly1305/poly1305_test.cc')
-rw-r--r--crypto/poly1305/poly1305_test.cc6
1 files changed, 5 insertions, 1 deletions
diff --git a/crypto/poly1305/poly1305_test.cc b/crypto/poly1305/poly1305_test.cc
index 2c25e93b..a3272250 100644
--- a/crypto/poly1305/poly1305_test.cc
+++ b/crypto/poly1305/poly1305_test.cc
@@ -24,6 +24,8 @@
#include "../test/file_test.h"
+namespace bssl {
+
static bool TestSIMD(FileTest *t, unsigned excess,
const std::vector<uint8_t> &key,
const std::vector<uint8_t> &in,
@@ -119,6 +121,8 @@ static bool TestPoly1305(FileTest *t, void *arg) {
return true;
}
+} // namespace bssl
+
int main(int argc, char **argv) {
CRYPTO_library_init();
@@ -127,5 +131,5 @@ int main(int argc, char **argv) {
return 1;
}
- return FileTestMain(TestPoly1305, nullptr, argv[1]);
+ return bssl::FileTestMain(bssl::TestPoly1305, nullptr, argv[1]);
}