summaryrefslogtreecommitdiff
path: root/src/components/include/security_manager/crypto_manager.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/include/security_manager/crypto_manager.h')
-rw-r--r--src/components/include/security_manager/crypto_manager.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/components/include/security_manager/crypto_manager.h b/src/components/include/security_manager/crypto_manager.h
index 486b6da64f..ba50820a81 100644
--- a/src/components/include/security_manager/crypto_manager.h
+++ b/src/components/include/security_manager/crypto_manager.h
@@ -45,7 +45,7 @@
**security_manager::CryptoManager::CreateSSLContext()
* \brief Creates an instance of \ref SSLContext class
*
- * \fn void
+ * \fn void
*security_manager::CryptoManager::ReleaseSSLContext(security_manager::SSLContext
**context)
* \brief Frees \ref SSLContext instance
@@ -67,19 +67,19 @@ class CryptoManager : public policy::PolicyHandlerObserver {
virtual void ReleaseSSLContext(SSLContext* context) = 0;
virtual std::string LastError() const = 0;
/**
- * @brief IsCertificateUpdateRequired checks if certificate update is needed
- * @param system_time - time with which certificate expiration time
- * should be compared
- * @param certificates_time - certificate expiration time
- * @return True if certificate expired and need to be updated
- * otherwise False
- */
+ * @brief IsCertificateUpdateRequired checks if certificate update is needed
+ * @param system_time - time with which certificate expiration time
+ * should be compared
+ * @param certificates_time - certificate expiration time
+ * @return True if certificate expired and need to be updated
+ * otherwise False
+ */
virtual bool IsCertificateUpdateRequired(
const time_t system_time, const time_t certificates_time) const = 0;
/**
- * \brief Crypto manager settings getter
- * \return pointer to crypto manager settings class
- */
+ * \brief Crypto manager settings getter
+ * \return pointer to crypto manager settings class
+ */
virtual const CryptoManagerSettings& get_settings() const = 0;
virtual ~CryptoManager() {}
};