diff options
author | MITSUNARI Shigeo <herumi@nifty.com> | 2017-04-02 12:23:19 +0800 |
---|---|---|
committer | MITSUNARI Shigeo <herumi@nifty.com> | 2017-04-02 12:23:19 +0800 |
commit | e93fda860bf3b798f6a02ee806da6693a725dd2f (patch) | |
tree | 751a06a920d216ffa9530c3c569c223ac96e2e5d /include/bls.hpp | |
parent | 6e2296d78de9f3d29d4370b887e9fa92c251817f (diff) | |
download | dexon-bls-e93fda860bf3b798f6a02ee806da6693a725dd2f.tar dexon-bls-e93fda860bf3b798f6a02ee806da6693a725dd2f.tar.gz dexon-bls-e93fda860bf3b798f6a02ee806da6693a725dd2f.tar.bz2 dexon-bls-e93fda860bf3b798f6a02ee806da6693a725dd2f.tar.lz dexon-bls-e93fda860bf3b798f6a02ee806da6693a725dd2f.tar.xz dexon-bls-e93fda860bf3b798f6a02ee806da6693a725dd2f.tar.zst dexon-bls-e93fda860bf3b798f6a02ee806da6693a725dd2f.zip |
sign is constant time ; signCT is removedrelease20170402
Diffstat (limited to 'include/bls.hpp')
-rw-r--r-- | include/bls.hpp | 3 |
1 files changed, 1 insertions, 2 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) |