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/asn1/asn1_test.cc')
-rw-r--r--crypto/asn1/asn1_test.cc6
1 files changed, 5 insertions, 1 deletions
diff --git a/crypto/asn1/asn1_test.cc b/crypto/asn1/asn1_test.cc
index 8b024427..e3e310bd 100644
--- a/crypto/asn1/asn1_test.cc
+++ b/crypto/asn1/asn1_test.cc
@@ -21,6 +21,8 @@
#include "../test/scoped_types.h"
+namespace bssl {
+
// kTag128 is an ASN.1 structure with a universal tag with number 128.
static const uint8_t kTag128[] = {
0x1f, 0x81, 0x00, 0x01, 0x00,
@@ -69,10 +71,12 @@ static bool TestLargeTags() {
return true;
}
+} // namespace bssl
+
int main() {
CRYPTO_library_init();
- if (!TestLargeTags()) {
+ if (!bssl::TestLargeTags()) {
return 1;
}