From b0779efe006b54e91fb66b0e4cc4639718c6ea4f Mon Sep 17 00:00:00 2001 From: MITSUNARI Shigeo Date: Fri, 17 Mar 2017 19:52:05 +0900 Subject: add constant time sign SecretKey::signCT --- include/bls.hpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include/bls.hpp') diff --git a/include/bls.hpp b/include/bls.hpp index 28c6df6..2d6c313 100644 --- a/include/bls.hpp +++ b/include/bls.hpp @@ -119,6 +119,8 @@ public: void set(const uint64_t *p); void getPublicKey(PublicKey& pub) const; void sign(Sign& sign, const std::string& m) const; + // constant time sign + void signCT(Sign& sign, const std::string& m) const; /* make Pop(Proof of Possesion) pop = prv.sign(pub) -- cgit