aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/pubkey/xmss/xmss_hash.cpp
diff options
context:
space:
mode:
authorMatthias Gierlings <[email protected]>2018-04-12 15:56:57 +0200
committerMatthias Gierlings <[email protected]>2018-04-12 22:44:41 +0200
commit134e2d21b6118542a0000ba6b556db9357000339 (patch)
treeeb5a09f43e2333a82674f08a4b32da08d0db4bdf /src/lib/pubkey/xmss/xmss_hash.cpp
parenteae170db2a6f0461cfe2f55b84ae4e89bd719a74 (diff)
Removes unused overload in XMSS_Hash
- Removes overload `XMSS_Hash::h_msg_update(secure_vector<uint8_t>&)`
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);