mirror of
https://github.com/status-im/secp256k1.git
synced 2025-02-23 03:08:10 +00:00
15 lines
271 B
C++
15 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
|