diff options
author | MITSUNARI Shigeo <herumi@nifty.com> | 2016-08-15 15:27:51 +0800 |
---|---|---|
committer | MITSUNARI Shigeo <herumi@nifty.com> | 2016-08-15 15:27:51 +0800 |
commit | 7e2aacd8b7e7f3d9acc6313b64a811d93b674216 (patch) | |
tree | f6655960d93b864300cca9cdaddd34fa0937b431 /include/bls.hpp | |
parent | 6ab490cb6ae5321c991b9ce24c2b2f908d8c3490 (diff) | |
download | dexon-bls-7e2aacd8b7e7f3d9acc6313b64a811d93b674216.tar.gz dexon-bls-7e2aacd8b7e7f3d9acc6313b64a811d93b674216.tar.zst dexon-bls-7e2aacd8b7e7f3d9acc6313b64a811d93b674216.zip |
setStr, getStr were removed
Diffstat (limited to 'include/bls.hpp')
-rw-r--r-- | include/bls.hpp | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/include/bls.hpp b/include/bls.hpp index fc29d5c..6101381 100644 --- a/include/bls.hpp +++ b/include/bls.hpp @@ -35,8 +35,6 @@ public: ~Sign(); Sign(const Sign& rhs); Sign& operator=(const Sign& rhs); - void setStr(const std::string& str); - void getStr(std::string& str) const; bool operator==(const Sign& rhs) const; bool operator!=(const Sign& rhs) const { return !(*this == rhs); } int getId() const { return id_; } @@ -78,8 +76,6 @@ public: ~PublicKey(); PublicKey(const PublicKey& rhs); PublicKey& operator=(const PublicKey& rhs); - void setStr(const std::string& str); - void getStr(std::string& str) const; bool operator==(const PublicKey& rhs) const; bool operator!=(const PublicKey& rhs) const { return !(*this == rhs); } int getId() const { return id_; } @@ -106,8 +102,6 @@ public: ~PrivateKey(); PrivateKey(const PrivateKey& rhs); PrivateKey& operator=(const PrivateKey& rhs); - void setStr(const std::string& str); - void getStr(std::string& str) const; bool operator==(const PrivateKey& rhs) const; bool operator!=(const PrivateKey& rhs) const { return !(*this == rhs); } int getId() const { return id_; } @@ -127,4 +121,4 @@ public: void recover(const std::vector<PrivateKey>& prvVec); }; -} // bls +} //bls |