bitcoin/ecmult.h

14 lines
217 B
C
Raw Normal View History

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