secp256k1/ecmult.h

15 lines
271 B
C
Raw Normal View History

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