aboutsummaryrefslogtreecommitdiffstats
path: root/include/bls.hpp
blob: 31b3d1c10d313e255e21f2450d2e238d77e50ef7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
#pragma once
/**
    @file
    @brief BLS threshold signature on BN curve
    @author MITSUNARI Shigeo(@herumi)
    @license modified new BSD license
    http://opensource.org/licenses/BSD-3-Clause
*/
#include <vector>
#include <string>
#include <iosfwd>

namespace bls {

namespace impl {

struct PublicKey;
struct PrivateKey;
struct Sign;

} // bls::impl

/*
    BLS signature
    e : G2 x G1 -> Fp12
    Q in G2 ; fixed global parameter
    H : {str} -> G1
    s : private key
    sQ ; public key
    s H(m) ; signature of m
    verify ; e(sQ, H(m)) = e(Q, s H(m))
*/

/*
    initialize this library
    call this once before using the other method
*/
void init();

class Sign;
class PublicKey;
class PrivateKey;

typedef std::vector<Sign> SignVec;
typedef std::vector<PublicKey> PublicKeyVec;
typedef std::vector<PrivateKey> PrivateKeyVec;

/*
    [s_0, s_1, ..., s_{k-1}]
    s_0 is original private key
*/
typedef std::vector<PrivateKey> MasterPrivateKey;
/*
    [s_0 Q, ..., s_{k-1} Q]
    Q is global fixed parameter
*/
typedef std::vector<PublicKey> MasterPublicKey;

class Sign {
    impl::Sign *self_;
    int id_;
    friend class PublicKey;
    friend class PrivateKey;
    template<class G, class T>
    friend void LagrangeInterpolation(G& r, const T& vec);
public:
    Sign();
    ~Sign();
    Sign(const Sign& rhs);
    Sign& operator=(const Sign& rhs);
    bool operator==(const Sign& rhs) const;
    bool operator!=(const Sign& rhs) const { return !(*this == rhs); }
    int getId() const { return id_; }
    friend std::ostream& operator<<(std::ostream& os, const Sign& s);
    friend std::istream& operator>>(std::istream& is, Sign& s);
    bool verify(const PublicKey& pub, const std::string& m) const;
    /*
        verify self(pop) with pub
    */
    bool verify(const PublicKey& pub) const;
    /*
        recover sign from k signVec
    */
    void recover(const std::vector<Sign>& signVec);
    /*
        add signature key only if id_ == 0
    */
    void add(const Sign& rhs);
};

/*
    sQ ; public key
*/
class PublicKey {
    impl::PublicKey *self_;
    int id_;
    friend class PrivateKey;
    friend class Sign;
    template<class G, class T>
    friend void LagrangeInterpolation(G& r, const T& vec);
    template<class T, class G>
    friend struct Wrap;
public:
    PublicKey();
    ~PublicKey();
    PublicKey(const PublicKey& rhs);
    PublicKey& operator=(const PublicKey& rhs);
    bool operator==(const PublicKey& rhs) const;
    bool operator!=(const PublicKey& rhs) const { return !(*this == rhs); }
    int getId() const { return id_; }
    friend std::ostream& operator<<(std::ostream& os, const PublicKey& pub);
    friend std::istream& operator>>(std::istream& is, PublicKey& pub);
    void getStr(std::string& str) const;
    /*
        set public for id from mpk
    */
    void set(const MasterPublicKey& mpk, int id);
    /*
        recover publicKey from k pubVec
    */
    void recover(const std::vector<PublicKey>& pubVec);
    /*
        add public key only if id_ == 0
    */
    void add(const PublicKey& rhs);
};

/*
    s ; private key
*/
class PrivateKey {
    impl::PrivateKey *self_;
    int id_; // master if id_ = 0, shared if id_ > 0
    template<class G, class T>
    friend void LagrangeInterpolation(G& r, const T& vec);
    template<class T, class G>
    friend struct Wrap;
public:
    PrivateKey();
    ~PrivateKey();
    PrivateKey(const PrivateKey& rhs);
    PrivateKey& operator=(const PrivateKey& rhs);
    bool operator==(const PrivateKey& rhs) const;
    bool operator!=(const PrivateKey& rhs) const { return !(*this == rhs); }
    int getId() const { return id_; }
    friend std::ostream& operator<<(std::ostream& os, const PrivateKey& prv);
    friend std::istream& operator>>(std::istream& is, PrivateKey& prv);
    /*
        make a private key for id = 0
    */
    void init();
    void getPublicKey(PublicKey& pub) const;
    void sign(Sign& sign, const std::string& m) const;
    /*
        make Pop(Proof of Possesion)
    */
    void getPop(Sign& pop, const PublicKey& pub) const;
    /*
        make [s_0, ..., s_{k-1}] to prepare k-out-of-n secret sharing
    */
    void getMasterPrivateKey(MasterPrivateKey& msk, int k) const;
    /*
        set a private key for id > 0 from msk
    */
    void set(const MasterPrivateKey& msk, int id);
    /*
        recover privateKey from k prvVec
    */
    void recover(const std::vector<PrivateKey>& prvVec);
    /*
        add private key only if id_ == 0
    */
    void add(const PrivateKey& rhs);
};

/*
    make master public key [s_0 Q, ..., s_{k-1} Q] from msk
*/
void getMasterPublicKey(MasterPublicKey& mpk, const MasterPrivateKey& msk);

/*
    make pop from msk and mpk
*/
void getPopVec(std::vector<Sign>& popVec, const MasterPrivateKey& msk, const MasterPublicKey& mpk);

inline Sign operator+(const Sign& a, const Sign& b) { Sign r(a); r.add(b); return r; }
inline PublicKey operator+(const PublicKey& a, const PublicKey& b) { PublicKey r(a); r.add(b); return r; }
inline PrivateKey operator+(const PrivateKey& a, const PrivateKey& b) { PrivateKey r(a); r.add(b); return r; }

} //bls