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/newhope/newhope_vectors_test.cc')
-rw-r--r--crypto/newhope/newhope_vectors_test.cc6
1 files changed, 5 insertions, 1 deletions
diff --git a/crypto/newhope/newhope_vectors_test.cc b/crypto/newhope/newhope_vectors_test.cc
index fe84cd4b..691d693b 100644
--- a/crypto/newhope/newhope_vectors_test.cc
+++ b/crypto/newhope/newhope_vectors_test.cc
@@ -24,6 +24,8 @@
#include "internal.h"
+namespace bssl {
+
static bool TestNewhope(FileTest *t, void *arg) {
ScopedNEWHOPE_POLY a(NEWHOPE_POLY_new());
ScopedNEWHOPE_POLY s(NEWHOPE_POLY_new()), sp(NEWHOPE_POLY_new());
@@ -110,6 +112,8 @@ static bool TestNewhope(FileTest *t, void *arg) {
}
}
+} // namespace bssl
+
int main(int argc, char **argv) {
CRYPTO_library_init();
@@ -118,5 +122,5 @@ int main(int argc, char **argv) {
return 1;
}
- return FileTestMain(TestNewhope, nullptr, argv[1]);
+ return bssl::FileTestMain(bssl::TestNewhope, nullptr, argv[1]);
}