summaryrefslogtreecommitdiff
path: root/hc128.cpp
diff options
context:
space:
mode:
authorJeffrey Walton <noloader@gmail.com>2018-07-06 00:11:10 -0400
committerJeffrey Walton <noloader@gmail.com>2018-07-06 00:11:10 -0400
commit97a1e8cae2e94f93c9da16b637a45612af224590 (patch)
treee0890897adb0f5486c0d894f5e29977e34da9118 /hc128.cpp
parent320c68ecbf7f986b401e250fab124fd2effa5dc0 (diff)
downloadcryptopp-git-97a1e8cae2e94f93c9da16b637a45612af224590.tar.gz
Use SecBlock for keys and IVs
Diffstat (limited to 'hc128.cpp')
-rw-r--r--hc128.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/hc128.cpp b/hc128.cpp
index 19b4a3db..ec90a1bc 100644
--- a/hc128.cpp
+++ b/hc128.cpp
@@ -193,7 +193,7 @@ void HC128Policy::CipherSetKey(const NameValuePairs &params, const byte *userKey
{
CRYPTOPP_UNUSED(params);
- GetUserKey(LITTLE_ENDIAN_ORDER, m_key, 4, userKey, keylen);
+ GetUserKey(LITTLE_ENDIAN_ORDER, m_key.begin(), 4, userKey, keylen);
for (unsigned int i = 4; i < 8; i++)
m_key[i] = m_key[i - 4];
}
@@ -238,7 +238,7 @@ void HC128Policy::CipherResynchronize(byte *keystreamBuffer, const byte *iv, siz
{
CRYPTOPP_UNUSED(keystreamBuffer);
- GetUserKey(LITTLE_ENDIAN_ORDER, m_iv, 4, iv, length);
+ GetUserKey(LITTLE_ENDIAN_ORDER, m_iv.begin(), 4, iv, length);
for (unsigned int i = 4; i < 8; i++)
m_iv[i] = m_iv[i - 4];