aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/pubkey/xmss/xmss_hash.cpp
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2018-04-14 09:01:27 -0400
committerJack Lloyd <[email protected]>2018-04-14 09:01:27 -0400
commitd208cc3ab74afce04b18c21d87e4927034ab726a (patch)
tree4b4bf7d4e3c6ae033b78b5db0e66d2af9095d86f /src/lib/pubkey/xmss/xmss_hash.cpp
parent325d772cf89763a3ca9e5ac144d10af6c408421f (diff)
parent134e2d21b6118542a0000ba6b556db9357000339 (diff)
Merge GH #1531 Improve XMSS test coverage
Diffstat (limited to 'src/lib/pubkey/xmss/xmss_hash.cpp')
-rw-r--r--src/lib/pubkey/xmss/xmss_hash.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/lib/pubkey/xmss/xmss_hash.cpp b/src/lib/pubkey/xmss/xmss_hash.cpp
index a691453dc..cd714873c 100644
--- a/src/lib/pubkey/xmss/xmss_hash.cpp
+++ b/src/lib/pubkey/xmss/xmss_hash.cpp
@@ -56,11 +56,6 @@ void XMSS_Hash::h_msg_init(const secure_vector<uint8_t>& randomness,
m_msg_hash->update(index_bytes);
}
-void XMSS_Hash::h_msg_update(const secure_vector<uint8_t>& data)
- {
- m_msg_hash->update(data);
- }
-
void XMSS_Hash::h_msg_update(const uint8_t data[], size_t size)
{
m_msg_hash->update(data, size);