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