Lines Matching full:signature
108 /** @class Signature
109 * @brief Contains signature verification functions.
110 * @details The software image class that contains the signature
113 class Signature class
116 Signature() = delete;
117 Signature(const Signature&) = delete;
118 Signature& operator=(const Signature&) = delete;
119 Signature(Signature&&) = default;
120 Signature& operator=(Signature&&) = default;
121 ~Signature() = default;
124 * @brief Constructs Signature.
129 explicit Signature(const std::filesystem::path& imageDirPath,
134 * @brief Image signature verification function.
135 * Verify the Manifest and public key file signature using the
137 * validation, continue the whole image files signature
141 * @return true if signature verification was successful,
148 * @brief Function used for system level file signature validation
174 * @brief Verify the file signature using public key and hash function
177 * @param[in] - Signature file path
180 * @return true if signature verification was successful, false if not
183 const std::filesystem::path& signature,