aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/hash/sha3/sha3.h
diff options
context:
space:
mode:
authorJack Lloyd <[email protected]>2017-05-22 13:31:37 -0400
committerJack Lloyd <[email protected]>2017-05-22 13:31:37 -0400
commitf2f2fe7610f196cd4c5f51b5e588558762448d3c (patch)
tree70f0f84ea8c0659387e6726493a3065d05adcfe1 /src/lib/hash/sha3/sha3.h
parent89e6af6b94de14a4325d6f761b1bf597b6eb450f (diff)
Add HashFunction::copy_state
See GH #1037
Diffstat (limited to 'src/lib/hash/sha3/sha3.h')
-rw-r--r--src/lib/hash/sha3/sha3.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/lib/hash/sha3/sha3.h b/src/lib/hash/sha3/sha3.h
index e7905b5c4..fec25b806 100644
--- a/src/lib/hash/sha3/sha3.h
+++ b/src/lib/hash/sha3/sha3.h
@@ -31,6 +31,7 @@ class BOTAN_DLL SHA_3 : public HashFunction
size_t output_length() const override { return m_output_bits / 8; }
HashFunction* clone() const override;
+ std::unique_ptr<HashFunction> copy_state() const override;
std::string name() const override;
void clear() override;