summaryrefslogtreecommitdiff
path: root/include/ssl_key_handler.hpp
diff options
context:
space:
mode:
authorJayanth Othayoth <ojayanth@in.ibm.com>2019-05-13 09:46:34 +0300
committerEd Tanous <ed.tanous@intel.com>2019-06-07 23:10:08 +0300
commit4d2849acfe1fc24e4c28878f765580b9e96ad36e (patch)
tree98fc867faaf4dcbebf8a82c9e812b53852f61a99 /include/ssl_key_handler.hpp
parent32bee76c18d4731657a7d75034ea0450e53c21f0 (diff)
downloadbmcweb-4d2849acfe1fc24e4c28878f765580b9e96ad36e.tar.xz
Fix for Certificate Signature validation failure
Resolves openbmc/bmcweb#82 Signed-off-by: Jayanth Othayoth <ojayanth@in.ibm.com> Change-Id: I944c1f9afe03ca58f61fdde34f83f092ff8d8ab2
Diffstat (limited to 'include/ssl_key_handler.hpp')
-rw-r--r--include/ssl_key_handler.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/ssl_key_handler.hpp b/include/ssl_key_handler.hpp
index 9a2e877b35..e309d70a30 100644
--- a/include/ssl_key_handler.hpp
+++ b/include/ssl_key_handler.hpp
@@ -42,7 +42,7 @@ inline bool verifyOpensslKeyCert(const std::string &filepath)
std::cout << "Found an RSA key\n";
if (RSA_check_key(rsa) == 1)
{
- // private_key_valid = true;
+ privateKeyValid = true;
}
else
{