Merge branch '0.4.x' into 0.5.0.x
[novacoin.git] / src / key.h
1 // Copyright (c) 2009-2010 Satoshi Nakamoto
2 // Copyright (c) 2009-2012 The Bitcoin developers
3 // Distributed under the MIT/X11 software license, see the accompanying
4 // file license.txt or http://www.opensource.org/licenses/mit-license.php.
5 #ifndef BITCOIN_KEY_H
6 #define BITCOIN_KEY_H
7
8 #include <stdexcept>
9 #include <vector>
10
11 #include <openssl/ec.h>
12 #include <openssl/ecdsa.h>
13 #include <openssl/obj_mac.h>
14
15 #include "serialize.h"
16 #include "uint256.h"
17 #include "base58.h"
18
19 // secp160k1
20 // const unsigned int PRIVATE_KEY_SIZE = 192;
21 // const unsigned int PUBLIC_KEY_SIZE  = 41;
22 // const unsigned int SIGNATURE_SIZE   = 48;
23 //
24 // secp192k1
25 // const unsigned int PRIVATE_KEY_SIZE = 222;
26 // const unsigned int PUBLIC_KEY_SIZE  = 49;
27 // const unsigned int SIGNATURE_SIZE   = 57;
28 //
29 // secp224k1
30 // const unsigned int PRIVATE_KEY_SIZE = 250;
31 // const unsigned int PUBLIC_KEY_SIZE  = 57;
32 // const unsigned int SIGNATURE_SIZE   = 66;
33 //
34 // secp256k1:
35 // const unsigned int PRIVATE_KEY_SIZE = 279;
36 // const unsigned int PUBLIC_KEY_SIZE  = 65;
37 // const unsigned int SIGNATURE_SIZE   = 72;
38 //
39 // see www.keylength.com
40 // script supports up to 75 for single byte push
41
42 // Generate a private key from just the secret parameter
43 int static inline EC_KEY_regenerate_key(EC_KEY *eckey, BIGNUM *priv_key)
44 {
45     int ok = 0;
46     BN_CTX *ctx = NULL;
47     EC_POINT *pub_key = NULL;
48
49     if (!eckey) return 0;
50
51     const EC_GROUP *group = EC_KEY_get0_group(eckey);
52
53     if ((ctx = BN_CTX_new()) == NULL)
54         goto err;
55
56     pub_key = EC_POINT_new(group);
57
58     if (pub_key == NULL)
59         goto err;
60
61     if (!EC_POINT_mul(group, pub_key, priv_key, NULL, NULL, ctx))
62         goto err;
63
64     EC_KEY_set_private_key(eckey,priv_key);
65     EC_KEY_set_public_key(eckey,pub_key);
66
67     ok = 1;
68
69 err:
70
71     if (pub_key)
72         EC_POINT_free(pub_key);
73     if (ctx != NULL)
74         BN_CTX_free(ctx);
75
76     return(ok);
77 }
78
79 // Perform ECDSA key recovery (see SEC1 4.1.6) for curves over (mod p)-fields
80 // recid selects which key is recovered
81 // if check is nonzero, additional checks are performed
82 int static inline ECDSA_SIG_recover_key_GFp(EC_KEY *eckey, ECDSA_SIG *ecsig, const unsigned char *msg, int msglen, int recid, int check)
83 {
84     if (!eckey) return 0;
85
86     int ret = 0;
87     BN_CTX *ctx = NULL;
88
89     BIGNUM *x = NULL;
90     BIGNUM *e = NULL;
91     BIGNUM *order = NULL;
92     BIGNUM *sor = NULL;
93     BIGNUM *eor = NULL;
94     BIGNUM *field = NULL;
95     EC_POINT *R = NULL;
96     EC_POINT *O = NULL;
97     EC_POINT *Q = NULL;
98     BIGNUM *rr = NULL;
99     BIGNUM *zero = NULL;
100     int n = 0;
101     int i = recid / 2;
102
103     const EC_GROUP *group = EC_KEY_get0_group(eckey);
104     if ((ctx = BN_CTX_new()) == NULL) { ret = -1; goto err; }
105     BN_CTX_start(ctx);
106     order = BN_CTX_get(ctx);
107     if (!EC_GROUP_get_order(group, order, ctx)) { ret = -2; goto err; }
108     x = BN_CTX_get(ctx);
109     if (!BN_copy(x, order)) { ret=-1; goto err; }
110     if (!BN_mul_word(x, i)) { ret=-1; goto err; }
111     if (!BN_add(x, x, ecsig->r)) { ret=-1; goto err; }
112     field = BN_CTX_get(ctx);
113     if (!EC_GROUP_get_curve_GFp(group, field, NULL, NULL, ctx)) { ret=-2; goto err; }
114     if (BN_cmp(x, field) >= 0) { ret=0; goto err; }
115     if ((R = EC_POINT_new(group)) == NULL) { ret = -2; goto err; }
116     if (!EC_POINT_set_compressed_coordinates_GFp(group, R, x, recid % 2, ctx)) { ret=0; goto err; }
117     if (check)
118     {
119         if ((O = EC_POINT_new(group)) == NULL) { ret = -2; goto err; }
120         if (!EC_POINT_mul(group, O, NULL, R, order, ctx)) { ret=-2; goto err; }
121         if (!EC_POINT_is_at_infinity(group, O)) { ret = 0; goto err; }
122     }
123     if ((Q = EC_POINT_new(group)) == NULL) { ret = -2; goto err; }
124     n = EC_GROUP_get_degree(group);
125     e = BN_CTX_get(ctx);
126     if (!BN_bin2bn(msg, msglen, e)) { ret=-1; goto err; }
127     if (8*msglen > n) BN_rshift(e, e, 8-(n & 7));
128     zero = BN_CTX_get(ctx);
129     if (!BN_zero(zero)) { ret=-1; goto err; }
130     if (!BN_mod_sub(e, zero, e, order, ctx)) { ret=-1; goto err; }
131     rr = BN_CTX_get(ctx);
132     if (!BN_mod_inverse(rr, ecsig->r, order, ctx)) { ret=-1; goto err; }
133     sor = BN_CTX_get(ctx);
134     if (!BN_mod_mul(sor, ecsig->s, rr, order, ctx)) { ret=-1; goto err; }
135     eor = BN_CTX_get(ctx);
136     if (!BN_mod_mul(eor, e, rr, order, ctx)) { ret=-1; goto err; }
137     if (!EC_POINT_mul(group, Q, eor, R, sor, ctx)) { ret=-2; goto err; }
138     if (!EC_KEY_set_public_key(eckey, Q)) { ret=-2; goto err; }
139
140     ret = 1;
141
142 err:
143     if (ctx) {
144         BN_CTX_end(ctx);
145         BN_CTX_free(ctx);
146     }
147     if (R != NULL) EC_POINT_free(R);
148     if (O != NULL) EC_POINT_free(O);
149     if (Q != NULL) EC_POINT_free(Q);
150     return ret;
151 }
152
153 class key_error : public std::runtime_error
154 {
155 public:
156     explicit key_error(const std::string& str) : std::runtime_error(str) {}
157 };
158
159
160 // secure_allocator is defined in serialize.h
161 // CPrivKey is a serialized private key, with all parameters included (279 bytes)
162 typedef std::vector<unsigned char, secure_allocator<unsigned char> > CPrivKey;
163 // CSecret is a serialization of just the secret parameter (32 bytes)
164 typedef std::vector<unsigned char, secure_allocator<unsigned char> > CSecret;
165
166 class CKey
167 {
168 protected:
169     EC_KEY* pkey;
170     bool fSet;
171
172 public:
173     CKey()
174     {
175         pkey = EC_KEY_new_by_curve_name(NID_secp256k1);
176         if (pkey == NULL)
177             throw key_error("CKey::CKey() : EC_KEY_new_by_curve_name failed");
178         fSet = false;
179     }
180
181     CKey(const CKey& b)
182     {
183         pkey = EC_KEY_dup(b.pkey);
184         if (pkey == NULL)
185             throw key_error("CKey::CKey(const CKey&) : EC_KEY_dup failed");
186         fSet = b.fSet;
187     }
188
189     CKey& operator=(const CKey& b)
190     {
191         if (!EC_KEY_copy(pkey, b.pkey))
192             throw key_error("CKey::operator=(const CKey&) : EC_KEY_copy failed");
193         fSet = b.fSet;
194         return (*this);
195     }
196
197     ~CKey()
198     {
199         EC_KEY_free(pkey);
200     }
201
202     bool IsNull() const
203     {
204         return !fSet;
205     }
206
207     void MakeNewKey()
208     {
209         if (!EC_KEY_generate_key(pkey))
210             throw key_error("CKey::MakeNewKey() : EC_KEY_generate_key failed");
211         fSet = true;
212     }
213
214     bool SetPrivKey(const CPrivKey& vchPrivKey)
215     {
216         const unsigned char* pbegin = &vchPrivKey[0];
217         if (!d2i_ECPrivateKey(&pkey, &pbegin, vchPrivKey.size()))
218             return false;
219         fSet = true;
220         return true;
221     }
222
223     bool SetSecret(const CSecret& vchSecret)
224     {
225         EC_KEY_free(pkey);
226         pkey = EC_KEY_new_by_curve_name(NID_secp256k1);
227         if (pkey == NULL)
228             throw key_error("CKey::SetSecret() : EC_KEY_new_by_curve_name failed");
229         if (vchSecret.size() != 32)
230             throw key_error("CKey::SetSecret() : secret must be 32 bytes");
231         BIGNUM *bn = BN_bin2bn(&vchSecret[0],32,BN_new());
232         if (bn == NULL)
233             throw key_error("CKey::SetSecret() : BN_bin2bn failed");
234         if (!EC_KEY_regenerate_key(pkey,bn))
235         {
236             BN_clear_free(bn);
237             throw key_error("CKey::SetSecret() : EC_KEY_regenerate_key failed");
238         }
239         BN_clear_free(bn);
240         fSet = true;
241         return true;
242     }
243
244     CSecret GetSecret() const
245     {
246         CSecret vchRet;
247         vchRet.resize(32);
248         const BIGNUM *bn = EC_KEY_get0_private_key(pkey);
249         int nBytes = BN_num_bytes(bn);
250         if (bn == NULL)
251             throw key_error("CKey::GetSecret() : EC_KEY_get0_private_key failed");
252         int n=BN_bn2bin(bn,&vchRet[32 - nBytes]);
253         if (n != nBytes) 
254             throw key_error("CKey::GetSecret(): BN_bn2bin failed");
255         return vchRet;
256     }
257
258     CPrivKey GetPrivKey() const
259     {
260         unsigned int nSize = i2d_ECPrivateKey(pkey, NULL);
261         if (!nSize)
262             throw key_error("CKey::GetPrivKey() : i2d_ECPrivateKey failed");
263         CPrivKey vchPrivKey(nSize, 0);
264         unsigned char* pbegin = &vchPrivKey[0];
265         if (i2d_ECPrivateKey(pkey, &pbegin) != nSize)
266             throw key_error("CKey::GetPrivKey() : i2d_ECPrivateKey returned unexpected size");
267         return vchPrivKey;
268     }
269
270     bool SetPubKey(const std::vector<unsigned char>& vchPubKey)
271     {
272         const unsigned char* pbegin = &vchPubKey[0];
273         if (!o2i_ECPublicKey(&pkey, &pbegin, vchPubKey.size()))
274             return false;
275         fSet = true;
276         return true;
277     }
278
279     std::vector<unsigned char> GetPubKey() const
280     {
281         unsigned int nSize = i2o_ECPublicKey(pkey, NULL);
282         if (!nSize)
283             throw key_error("CKey::GetPubKey() : i2o_ECPublicKey failed");
284         std::vector<unsigned char> vchPubKey(nSize, 0);
285         unsigned char* pbegin = &vchPubKey[0];
286         if (i2o_ECPublicKey(pkey, &pbegin) != nSize)
287             throw key_error("CKey::GetPubKey() : i2o_ECPublicKey returned unexpected size");
288         return vchPubKey;
289     }
290
291     bool Sign(uint256 hash, std::vector<unsigned char>& vchSig)
292     {
293         vchSig.clear();
294         unsigned char pchSig[10000];
295         unsigned int nSize = 0;
296         if (!ECDSA_sign(0, (unsigned char*)&hash, sizeof(hash), pchSig, &nSize, pkey))
297             return false;
298         vchSig.resize(nSize);
299         memcpy(&vchSig[0], pchSig, nSize);
300         return true;
301     }
302
303     // create a compact signature (65 bytes), which allows reconstructing the used public key
304     // The format is one header byte, followed by two times 32 bytes for the serialized r and s values.
305     // The header byte: 0x1B = first key with even y, 0x1C = first key with odd y,
306     //                  0x1D = second key with even y, 0x1E = second key with odd y
307     bool SignCompact(uint256 hash, std::vector<unsigned char>& vchSig)
308     {
309         bool fOk = false;
310         ECDSA_SIG *sig = ECDSA_do_sign((unsigned char*)&hash, sizeof(hash), pkey);
311         if (sig==NULL)
312             return false;
313         vchSig.clear();
314         vchSig.resize(65,0);
315         int nBitsR = BN_num_bits(sig->r);
316         int nBitsS = BN_num_bits(sig->s);
317         if (nBitsR <= 256 && nBitsS <= 256)
318         {
319             int nRecId = -1;
320             for (int i=0; i<4; i++)
321             {
322                 CKey keyRec;
323                 keyRec.fSet = true;
324                 if (ECDSA_SIG_recover_key_GFp(keyRec.pkey, sig, (unsigned char*)&hash, sizeof(hash), i, 1) == 1)
325                     if (keyRec.GetPubKey() == this->GetPubKey())
326                     {
327                         nRecId = i;
328                         break;
329                     }
330             }
331
332             if (nRecId == -1)
333                 throw key_error("CKey::SignCompact() : unable to construct recoverable key");
334
335             vchSig[0] = nRecId+27;
336             BN_bn2bin(sig->r,&vchSig[33-(nBitsR+7)/8]);
337             BN_bn2bin(sig->s,&vchSig[65-(nBitsS+7)/8]);
338             fOk = true;
339         }
340         ECDSA_SIG_free(sig);
341         return fOk;
342     }
343
344     // reconstruct public key from a compact signature
345     // This is only slightly more CPU intensive than just verifying it.
346     // If this function succeeds, the recovered public key is guaranteed to be valid
347     // (the signature is a valid signature of the given data for that key)
348     bool SetCompactSignature(uint256 hash, const std::vector<unsigned char>& vchSig)
349     {
350         if (vchSig.size() != 65)
351             return false;
352         if (vchSig[0]<27 || vchSig[0]>=31)
353             return false;
354         ECDSA_SIG *sig = ECDSA_SIG_new();
355         BN_bin2bn(&vchSig[1],32,sig->r);
356         BN_bin2bn(&vchSig[33],32,sig->s);
357
358         EC_KEY_free(pkey);
359         pkey = EC_KEY_new_by_curve_name(NID_secp256k1);
360         if (ECDSA_SIG_recover_key_GFp(pkey, sig, (unsigned char*)&hash, sizeof(hash), vchSig[0] - 27, 0) == 1)
361         {
362             fSet = true;
363             ECDSA_SIG_free(sig);
364             return true;
365         }
366         return false;
367     }
368
369     bool Verify(uint256 hash, const std::vector<unsigned char>& vchSig)
370     {
371         // -1 = error, 0 = bad sig, 1 = good
372         if (ECDSA_verify(0, (unsigned char*)&hash, sizeof(hash), &vchSig[0], vchSig.size(), pkey) != 1)
373             return false;
374         return true;
375     }
376
377     // Verify a compact signature
378     bool VerifyCompact(uint256 hash, const std::vector<unsigned char>& vchSig)
379     {
380         CKey key;
381         if (!key.SetCompactSignature(hash, vchSig))
382             return false;
383         if (GetPubKey() != key.GetPubKey())
384             return false;
385         return true;
386     }
387
388     // Get the address corresponding to this key
389     CBitcoinAddress GetAddress() const
390     {
391         return CBitcoinAddress(GetPubKey());
392     }
393
394     bool IsValid()
395     {
396         if (!fSet)
397             return false;
398
399         CSecret secret = GetSecret();
400         CKey key2;
401         key2.SetSecret(secret);
402         return GetPubKey() == key2.GetPubKey();
403     }
404 };
405
406 #endif