bitcoin/ecmult.h

15 lines
271 B
C
Raw Normal View History

2013-03-07 22:52:50 -03:00
#ifndef _SECP256K1_ECMULT_
#define _SECP256K1_ECMULT_
#include "group.h"
2013-03-10 00:24:00 -03:00
#include "num.h"
2013-03-07 22:52:50 -03:00
namespace secp256k1 {
2013-03-17 22:41:01 -03:00
void ECMultBase(GroupElemJac &out, const Number &gn);
2013-03-16 11:51:55 -03:00
void ECMult(GroupElemJac &out, const GroupElemJac &a, const Number &an, const Number &gn);
2013-03-09 18:47:40 -03:00
2013-03-07 22:52:50 -03:00
}
#endif