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/cipher/cipher_test.cc')
-rw-r--r--crypto/cipher/cipher_test.cc6
1 files changed, 1 insertions, 5 deletions
diff --git a/crypto/cipher/cipher_test.cc b/crypto/cipher/cipher_test.cc
index 221eb67e..fa384c69 100644
--- a/crypto/cipher/cipher_test.cc
+++ b/crypto/cipher/cipher_test.cc
@@ -65,8 +65,6 @@
#include "../test/scoped_types.h"
-namespace bssl {
-
static const EVP_CIPHER *GetCipher(const std::string &name) {
if (name == "DES-CBC") {
return EVP_des_cbc();
@@ -286,8 +284,6 @@ static bool TestCipher(FileTest *t, void *arg) {
return true;
}
-} // namespace bssl
-
int main(int argc, char **argv) {
CRYPTO_library_init();
@@ -296,5 +292,5 @@ int main(int argc, char **argv) {
return 1;
}
- return bssl::FileTestMain(bssl::TestCipher, nullptr, argv[1]);
+ return FileTestMain(TestCipher, nullptr, argv[1]);
}