-
Notifications
You must be signed in to change notification settings - Fork 208
/
SECP256k1.h
77 lines (59 loc) · 2.25 KB
/
SECP256k1.h
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
/*
* This file is part of the VanitySearch distribution (https://github.com/JeanLucPons/VanitySearch).
* Copyright (c) 2019 Jean Luc PONS.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, version 3.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef SECP256K1H
#define SECP256K1H
#include "Point.h"
#include <string>
#include <vector>
// Address type
#define P2PKH 0
#define P2SH 1
#define BECH32 2
class Secp256K1 {
public:
Secp256K1();
~Secp256K1();
void Init();
Point ComputePublicKey(Int *privKey);
Point NextKey(Point &key);
void Check();
bool EC(Point &p);
void GetHash160(int type,bool compressed,
Point &k0, Point &k1, Point &k2, Point &k3,
uint8_t *h0, uint8_t *h1, uint8_t *h2, uint8_t *h3);
void GetHash160(int type,bool compressed, Point &pubKey, unsigned char *hash);
std::string GetAddress(int type, bool compressed, Point &pubKey);
std::string GetAddress(int type, bool compressed, unsigned char *hash160);
std::vector<std::string> GetAddress(int type, bool compressed, unsigned char *h1, unsigned char *h2, unsigned char *h3, unsigned char *h4);
std::string GetPrivAddress(bool compressed, Int &privKey );
std::string GetPublicKeyHex(bool compressed, Point &p);
Point ParsePublicKeyHex(std::string str, bool &isCompressed);
bool CheckPudAddress(std::string address);
static Int DecodePrivateKey(char *key,bool *compressed);
Point Add(Point &p1, Point &p2);
Point Add2(Point &p1, Point &p2);
Point AddDirect(Point &p1, Point &p2);
Point Double(Point &p);
Point DoubleDirect(Point &p);
Point G; // Generator
Int order; // Curve order
private:
uint8_t GetByte(std::string &str,int idx);
Int GetY(Int x, bool isEven);
Point GTable[256*32]; // Generator table
};
#endif // SECP256K1H