summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--image_verify.cpp2
-rw-r--r--test/utest.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/image_verify.cpp b/image_verify.cpp
index e1e961d7b..388f48977 100644
--- a/image_verify.cpp
+++ b/image_verify.cpp
@@ -222,7 +222,7 @@ bool Signature::verifyFile(const fs::path& file, const fs::path& sigFile,
// Adds all digest algorithms to the internal table
OpenSSL_add_all_digests();
- // Create Hash structre.
+ // Create Hash structure.
auto hashStruct = EVP_get_digestbyname(hashFunc.c_str());
if (!hashStruct)
{
diff --git a/test/utest.cpp b/test/utest.cpp
index 21fdc2891..38f99128e 100644
--- a/test/utest.cpp
+++ b/test/utest.cpp
@@ -112,7 +112,7 @@ class SignatureTest : public testing::Test
fs::path signedConfPNORPath;
};
-/** @brief Test for sucess scenario*/
+/** @brief Test for success scenario*/
TEST_F(SignatureTest, TestSignatureVerify)
{
EXPECT_TRUE(signature->verify());
OpenPOWER on IntegriCloud