summaryrefslogtreecommitdiff
path: root/shake.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2023-04-15 16:45:02 -0400
committerGitHub <noreply@github.com>2023-04-15 16:45:02 -0400
commitf5f63850f9a5521e45de3cc45be61309a2e71ab2 (patch)
treed9ec904ebd511ae673e89790a407f0cdcf0b9bbc /shake.cpp
parent358d0cfecd593d55160df38e133b9450aaf1cd59 (diff)
downloadcryptopp-git-f5f63850f9a5521e45de3cc45be61309a2e71ab2.tar.gz
Use std namespace for memset, memcpy, memcmp (#1204)
Diffstat (limited to 'shake.cpp')
-rw-r--r--shake.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/shake.cpp b/shake.cpp
index 65e08235..87e32296 100644
--- a/shake.cpp
+++ b/shake.cpp
@@ -48,7 +48,7 @@ void SHAKE::Update(const byte *input, size_t length)
void SHAKE::Restart()
{
- memset(m_state, 0, m_state.SizeInBytes());
+ std::memset(m_state, 0, m_state.SizeInBytes());
m_counter = 0;
}