aboutsummaryrefslogtreecommitdiffstats
path: root/src/bls.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/bls.cpp')
-rw-r--r--src/bls.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/bls.cpp b/src/bls.cpp
index 609e256..7b6f40b 100644
--- a/src/bls.cpp
+++ b/src/bls.cpp
@@ -419,6 +419,10 @@ void SecretKey::setLittleEndian(const void *buf, size_t bufSize)
{
getInner().s.setArrayMask((const char *)buf, bufSize);
}
+void SecretKey::setHashOf(const void *buf, size_t bufSize)
+{
+ getInner().s.setHashOf(buf, bufSize);
+}
void SecretKey::getPublicKey(PublicKey& pub) const
{