diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/bls.hpp | 3 | ||||
-rw-r--r-- | include/bls_if.h | 1 |
2 files changed, 1 insertions, 3 deletions
diff --git a/include/bls.hpp b/include/bls.hpp index 2d6c313..b7c77a6 100644 --- a/include/bls.hpp +++ b/include/bls.hpp @@ -118,9 +118,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; + void sign(Sign& sign, const std::string& m) const; /* make Pop(Proof of Possesion) pop = prv.sign(pub) diff --git a/include/bls_if.h b/include/bls_if.h index 805ce10..ce8463e 100644 --- a/include/bls_if.h +++ b/include/bls_if.h @@ -77,7 +77,6 @@ void blsSecretKeyAdd(blsSecretKey *sec, const blsSecretKey *rhs); void blsSecretKeyInit(blsSecretKey *sec); void blsSecretKeyGetPublicKey(const blsSecretKey *sec, blsPublicKey *pub); void blsSecretKeySign(const blsSecretKey *sec, blsSign *sign, const char *m, size_t size); -void blsSecretKeySignCT(const blsSecretKey *sec, blsSign *sign, const char *m, size_t size); void blsSecretKeySet(blsSecretKey *sec, const blsSecretKey* msk, size_t k, const blsId *id); void blsSecretKeyRecover(blsSecretKey *sec, const blsSecretKey *secVec, const blsId *idVec, size_t n); void blsSecretKeyGetPop(const blsSecretKey *sec, blsSign *sign); |