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/cmac/cmac_test.cc')
-rw-r--r--crypto/cmac/cmac_test.cc6
1 files changed, 1 insertions, 5 deletions
diff --git a/crypto/cmac/cmac_test.cc b/crypto/cmac/cmac_test.cc
index 11b7ad69..2496f2a9 100644
--- a/crypto/cmac/cmac_test.cc
+++ b/crypto/cmac/cmac_test.cc
@@ -22,8 +22,6 @@
#include "../test/test_util.h"
-namespace bssl {
-
static void dump(const uint8_t *got, const uint8_t *want, size_t len) {
hexdump(stderr, "got :", got, len);
hexdump(stderr, "want:", want, len);
@@ -143,10 +141,8 @@ static int rfc_4493_test_vectors(void) {
return 1;
}
-} // namespace bssl
-
int main(int argc, char **argv) {
- if (!bssl::rfc_4493_test_vectors()) {
+ if (!rfc_4493_test_vectors()) {
return 1;
}