diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/bls.hpp | 14 | ||||
-rw-r--r-- | include/bls_if.h | 10 |
2 files changed, 14 insertions, 10 deletions
diff --git a/include/bls.hpp b/include/bls.hpp index cf2580b..d9ad086 100644 --- a/include/bls.hpp +++ b/include/bls.hpp @@ -62,6 +62,7 @@ class Id { friend class SecretKey; template<class T, class G> friend struct Wrap; template<class T, class G> friend struct WrapPointer; + template<class T, class G> friend struct WrapArray; impl::Id& getInner() { return *reinterpret_cast<impl::Id*>(self_); } const impl::Id& getInner() const { return *reinterpret_cast<const impl::Id*>(self_); } public: @@ -86,6 +87,7 @@ class SecretKey { uint64_t self_[4]; // 256-bit template<class T, class G> friend struct Wrap; template<class T, class G> friend struct WrapPointer; + template<class T, class G> friend struct WrapArray; impl::SecretKey& getInner() { return *reinterpret_cast<impl::SecretKey*>(self_); } const impl::SecretKey& getInner() const { return *reinterpret_cast<const impl::SecretKey*>(self_); } public: @@ -131,8 +133,8 @@ public: /* the size of msk must be k */ - void set(const SecretKey *const *msk, size_t k, const Id& id); - void recover(const SecretKey *const *secVec, const Id *const *idVec, size_t n); + void set(const SecretKey *msk, size_t k, const Id& id); + void recover(const SecretKey *secVec, const Id *idVec, size_t n); }; /* @@ -144,6 +146,7 @@ class PublicKey { friend class Sign; template<class T, class G> friend struct Wrap; template<class T, class G> friend struct WrapPointer; + template<class T, class G> friend struct WrapArray; impl::PublicKey& getInner() { return *reinterpret_cast<impl::PublicKey*>(self_); } const impl::PublicKey& getInner() const { return *reinterpret_cast<const impl::PublicKey*>(self_); } public: @@ -166,8 +169,8 @@ public: void add(const PublicKey& rhs); // the following methods are for C api - void set(const PublicKey *const *mpk, size_t k, const Id& id); - void recover(const PublicKey *const *pubVec, const Id *const *idVec, size_t n); + void set(const PublicKey *mpk, size_t k, const Id& id); + void recover(const PublicKey *pubVec, const Id *idVec, size_t n); }; /* @@ -178,6 +181,7 @@ class Sign { friend class SecretKey; template<class T, class G> friend struct Wrap; template<class T, class G> friend struct WrapPointer; + template<class T, class G> friend struct WrapArray; impl::Sign& getInner() { return *reinterpret_cast<impl::Sign*>(self_); } const impl::Sign& getInner() const { return *reinterpret_cast<const impl::Sign*>(self_); } public: @@ -201,7 +205,7 @@ public: void add(const Sign& rhs); // the following methods are for C api - void recover(const Sign* const *signVec, const Id *const *idVec, size_t n); + void recover(const Sign* signVec, const Id *idVec, size_t n); }; /* diff --git a/include/bls_if.h b/include/bls_if.h index 79885a0..b45f733 100644 --- a/include/bls_if.h +++ b/include/bls_if.h @@ -62,8 +62,8 @@ 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 blsSecretKeySet(blsSecretKey *sec, const blsSecretKey* const *msk, size_t k, const blsId *id); -void blsSecretKeyRecover(blsSecretKey *sec, const blsSecretKey* const *secVec, const blsId *const *idVec, size_t n); +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); blsPublicKey *blsPublicKeyCreate(void); @@ -73,8 +73,8 @@ void blsPublicKeyCopy(blsPublicKey *dst, const blsPublicKey *src); int blsPublicKeySetStr(blsPublicKey *pub, const char *buf, size_t bufSize); size_t blsPublicKeyGetStr(const blsPublicKey *pub, char *buf, size_t maxBufSize); void blsPublicKeyAdd(blsPublicKey *pub, const blsPublicKey *rhs); -void blsPublicKeySet(blsPublicKey *pub, const blsPublicKey *const *mpk, size_t k, const blsId *id); -void blsPublicKeyRecover(blsPublicKey *pub, const blsPublicKey *const *pubVec, const blsId *const *idVec, size_t n); +void blsPublicKeySet(blsPublicKey *pub, const blsPublicKey *mpk, size_t k, const blsId *id); +void blsPublicKeyRecover(blsPublicKey *pub, const blsPublicKey *pubVec, const blsId *idVec, size_t n); blsSign *blsSignCreate(void); void blsSignDestroy(blsSign *sign); @@ -83,7 +83,7 @@ void blsSignCopy(blsSign *dst, const blsSign *src); int blsSignSetStr(blsSign *sign, const char *buf, size_t bufSize); size_t blsSignGetStr(const blsSign *sign, char *buf, size_t maxBufSize); void blsSignAdd(blsSign *sign, const blsSign *rhs); -void blsSignRecover(blsSign *sign, const blsSign *const *signVec, const blsId *const *idVec, size_t n); +void blsSignRecover(blsSign *sign, const blsSign *signVec, const blsId *idVec, size_t n); int blsSignVerify(const blsSign *sign, const blsPublicKey *pub, const char *m, size_t size); |