mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 03:52:49 +01:00
3bc4b00e69
git-subtree-dir: src/dashbls git-subtree-split: 66ee820fbc9e3b97370db8c164904af48327a124
30 lines
1.2 KiB
C++
30 lines
1.2 KiB
C++
// Copyright (c) 2021 The Dash Core developers
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#ifndef SRC_THRESHOLD_HPP_
|
|
#define SRC_THRESHOLD_HPP_
|
|
|
|
#include "privatekey.hpp"
|
|
#include "elements.hpp"
|
|
|
|
namespace bls {
|
|
|
|
namespace Threshold {
|
|
|
|
PrivateKey PrivateKeyShare(const std::vector<PrivateKey>& sks, const Bytes& id);
|
|
PrivateKey PrivateKeyRecover(const std::vector<PrivateKey>& sks, const std::vector<Bytes>& ids);
|
|
|
|
G1Element PublicKeyShare(const std::vector<G1Element>& pks, const Bytes& id);
|
|
G1Element PublicKeyRecover(const std::vector<G1Element>& sks, const std::vector<Bytes>& ids);
|
|
|
|
G2Element SignatureShare(const std::vector<G2Element>& sks, const Bytes& id);
|
|
G2Element SignatureRecover(const std::vector<G2Element>& sigs, const std::vector<Bytes>& ids);
|
|
|
|
G2Element Sign(const PrivateKey& privateKey, const Bytes& vecMessage);
|
|
bool Verify(const G1Element& pubKey, const Bytes& vecMessage, const G2Element& signature);
|
|
} // end namespace Threshold
|
|
} // end namespace bls
|
|
|
|
#endif // SRC_THRESHOLD_HPP_
|