mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-01-20 15:19:07 +01:00
11 lines
149 B
C
11 lines
149 B
C
#ifndef _SECP256K1_NUM_OPENSSL_
|
|
#define _SECP256K1_NUM_OPENSSL_
|
|
|
|
#include <openssl/bn.h>
|
|
|
|
typedef struct {
|
|
BIGNUM bn;
|
|
} secp256k1_num_t;
|
|
|
|
#endif
|