From f5f63850f9a5521e45de3cc45be61309a2e71ab2 Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Sat, 15 Apr 2023 16:45:02 -0400 Subject: Use std namespace for memset, memcpy, memcmp (#1204) --- seal.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'seal.cpp') diff --git a/seal.cpp b/seal.cpp index fea047e7..9328e6dd 100644 --- a/seal.cpp +++ b/seal.cpp @@ -24,7 +24,7 @@ struct SEAL_Gamma : H(5), Z(5), D(16), lastIndex(0xffffffff) { GetUserKey(BIG_ENDIAN_ORDER, H.begin(), 5, key, 20); - memset(D, 0, 64); + std::memset(D, 0, 64); } word32 Apply(word32 i); @@ -38,7 +38,7 @@ word32 SEAL_Gamma::Apply(word32 i) word32 shaIndex = i/5; if (shaIndex != lastIndex) { - memcpy(Z, H, 20); + std::memcpy(Z, H, 20); D[0] = shaIndex; SHA1::Transform(Z, D); lastIndex = shaIndex; -- cgit v1.2.1