Lines Matching full:certificate
3 #include "certificate.hpp"
56 // http://redfish.dmtf.org/schemas/v1/Certificate.json#/definitions/KeyUsage for
73 // http://redfish.dmtf.org/schemas/v1/Certificate.json#/definitions/KeyUsage for
84 * @brief Dumps the PEM encoded certificate to installFilePath
86 * @param[in] pem - PEM encoded X509 certificate buffer.
108 "Failed to dump certificate, ERR:{ERR}, SRC_PEM:{SRC_PEM}, DST:{DST}", in dumpCertificate()
115 void Certificate::copyCertificate(const std::string& certSrcFilePath, in copyCertificate()
120 // Copy the certificate to the installation path in copyCertificate()
132 "Failed to copy certificate, ERR:{ERR}, SRC:{SRC}, DST:{DST}", in copyCertificate()
138 std::string Certificate::generateUniqueFilePath( in generateUniqueFilePath()
145 "Error occurred while creating random certificate file path, DIR:{DIR}", in generateUniqueFilePath()
154 std::string Certificate::generateAuthCertFileX509Path( in generateAuthCertFileX509Path()
175 lg2::error("Authority certificate x509 file path already used, DIR:{DIR}", in generateAuthCertFileX509Path()
180 std::string Certificate::generateAuthCertFilePath( in generateAuthCertFilePath()
183 // If there is a certificate file path (which means certificate replacement in generateAuthCertFilePath()
189 // If source certificate file is located in the certificates directory use in generateAuthCertFilePath()
203 std::string Certificate::generateCertFilePath( in generateCertFilePath()
216 Certificate::Certificate(sdbusplus::bus_t& bus, const std::string& objPath, in Certificate() function in phosphor::certs::Certificate
230 "Private key does not match the Certificate")); in Certificate()
245 // Generate certificate file path in Certificate()
248 // install the certificate in Certificate()
254 Certificate::Certificate(sdbusplus::bus_t& bus, const std::string& objPath, in Certificate() function in phosphor::certs::Certificate
265 // Generate certificate file path in Certificate()
268 // install the certificate in Certificate()
274 Certificate::~Certificate() in ~Certificate()
278 lg2::info("Certificate file not found! PATH:{PATH}", "PATH", in ~Certificate()
283 void Certificate::replace(const std::string filePath) in replace()
288 void Certificate::install(const std::string& certSrcFilePath, bool restore) in install()
292 lg2::debug("Certificate install, FILEPATH:{FILEPATH}", "FILEPATH", in install()
297 lg2::info("Certificate install, FILEPATH:{FILEPATH}", "FILEPATH", in install()
301 // stop watch for user initiated certificate install in install()
307 // Verify the certificate file in install()
335 // Load Certificate file into the X509 structure. in install()
370 // Keep certificate ID in install()
373 // Parse the certificate file and populate properties in install()
383 void Certificate::install(X509_STORE& x509Store, const std::string& pem, in install()
388 lg2::debug("Certificate install, PEM_STR:{PEM_STR}", "PEM_STR", pem); in install()
392 lg2::info("Certificate install, PEM_STR:{PEM_STR} ", "PEM_STR", pem); in install()
403 // stop watch for user initiated certificate install in install()
409 // Load Certificate file into the X509 structure. in install()
419 // Keep certificate ID in install()
421 // Parse the certificate file and populate properties in install()
430 void Certificate::populateProperties() in populateProperties()
436 std::string Certificate::getCertId() const in getCertId()
441 bool Certificate::isSame(const std::string& certPath) in isSame()
447 void Certificate::storageUpdate() in storageUpdate()
451 // Create symbolic link in the certificate directory in storageUpdate()
466 lg2::error("Failed to create symlink for certificate, ERR:{ERR}," in storageUpdate()
475 void Certificate::populateProperties(X509& cert) in populateProperties()
553 void Certificate::checkAndAppendPrivateKey(const std::string& filePath) in checkAndAppendPrivateKey()
607 bool Certificate::compareKeys(const std::string& filePath) in compareKeys()
609 lg2::info("Certificate compareKeys, FILEPATH:{FILEPATH}", "FILEPATH", in compareKeys()
670 "Private key is not matching with Certificate, FILE:{FILE}, ERRCODE:{ERRCODE}", in compareKeys()
677 void Certificate::delete_() in delete_()
682 std::string Certificate::getObjectPath() in getObjectPath()
687 std::string Certificate::getCertFilePath() in getCertFilePath()
692 void Certificate::setCertFilePath(const std::string& path) in setCertFilePath()
697 void Certificate::setCertInstallPath(const std::string& path) in setCertInstallPath()