mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-26 19:23:26 -03:00
14 lines
298 B
C++
14 lines
298 B
C++
#ifndef _SECP256K1_ECMULT_
|
|
#define _SECP256K1_ECMULT_
|
|
|
|
#include "group.h"
|
|
#include "num.h"
|
|
|
|
namespace secp256k1 {
|
|
|
|
void ECMultBase(GroupElemJac &out, const secp256k1_num_t &gn);
|
|
void ECMult(GroupElemJac &out, const GroupElemJac &a, const secp256k1_num_t &an, const secp256k1_num_t &gn);
|
|
|
|
}
|
|
|
|
#endif
|