aboutsummaryrefslogtreecommitdiff
path: root/test/test_secp256k1.cpp
blob: a0d3b1cab54edab610af986d1a5493533e010b75 (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
#include "hotstuff/crypto.h"

using namespace hotstuff;

int main() {
    PrivKeySecp256k1 p;
    p.from_hex("4aede145d13021fb43c938bced67511a7740c05786d3e0b94ffbdaa7f15afc57");
    pubkey_bt pub = p.get_pubkey();
    printf("%s\n", get_hex(*pub).c_str());
    DataStream s;
    s << *pub;
    PubKeySecp256k1 pub2;
    s >> pub2;
    printf("%s\n", get_hex(pub2).c_str());
    SigSecp256k1 sig;
    sig.sign(bytearray_t(32), p);
    printf("%s\n", get_hex(sig).c_str());
    s << sig;
    SigSecp256k1 sig2(secp256k1_default_verify_ctx);
    s >> sig2;
    bytearray_t msg = bytearray_t(32);
    msg[0] = 1;
    printf("%d %d\n", sig2.verify(bytearray_t(32), pub2),
                    sig2.verify(msg, pub2));
    p.from_rand();
    printf("%s\n", get_hex(p).c_str());
    sig.sign(msg, p);
    printf("%s\n", get_hex(sig).c_str());
    s << sig;
    s >> sig2;
    printf("%d %d\n", sig2.verify(msg, PubKeySecp256k1(p)),
                    sig2.verify(msg, pub2));
}