14 lines
403 B
C
14 lines
403 B
C
#ifndef SECP256K1_MODULE_BPPP_MAIN_H
|
|
#define SECP256K1_MODULE_BPPP_MAIN_H
|
|
|
|
/* this type must be completed before any of the modules/bppp includes */
|
|
struct secp256k1_bppp_generators {
|
|
size_t n;
|
|
/* n total generators; includes both G_i and H_i */
|
|
/* For BP++, the generators are G_i from [0..(n - 8)] and the last 8 values
|
|
are generators are for H_i */
|
|
secp256k1_ge* gens;
|
|
};
|
|
|
|
#endif
|