summaryrefslogtreecommitdiff
path: root/src/components/security_manager/src
diff options
context:
space:
mode:
authorAleksandr Galiuzov <AGaliuzov@luxoft.com>2015-10-06 20:44:48 +0300
committerAleksandr Galiuzov <AGaliuzov@luxoft.com>2015-10-06 20:44:48 +0300
commit4eabbf478504d1f5cb65375ae6066a1873f64365 (patch)
treedc8fe7123e2369841eb6f5b043e4e5a59006175b /src/components/security_manager/src
parent9d4a6da3b02b1715ca3b968b7b2bf75a642a3672 (diff)
downloadsdl_core-4eabbf478504d1f5cb65375ae6066a1873f64365.tar.gz
Add additional field to database
Also commit remove logging of CN and SERIAL number during handshake because of appropriate requirements Closes-Bug: APPLINK-17066 Closes-Bug: APPLINK-17069
Diffstat (limited to 'src/components/security_manager/src')
-rw-r--r--src/components/security_manager/src/ssl_context_impl.cc5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/components/security_manager/src/ssl_context_impl.cc b/src/components/security_manager/src/ssl_context_impl.cc
index e49d631092..b1cbddd46c 100644
--- a/src/components/security_manager/src/ssl_context_impl.cc
+++ b/src/components/security_manager/src/ssl_context_impl.cc
@@ -151,11 +151,6 @@ void CryptoManagerImpl::SSLContextImpl::PrintCertData(X509* cert,
OPENSSL_free(issuer);
}
- const std::string& cn = GetTextBy(subj_name, NID_commonName);
- const std::string& sn = GetTextBy(subj_name, NID_serialNumber);
-
- LOG4CXX_DEBUG(logger_, "CN: " << cn << ". SERIALNUMBER: " << sn);
-
ASN1_TIME* notBefore = X509_get_notBefore(cert);
ASN1_TIME* notAfter = X509_get_notAfter(cert);