bitcoin/ecmult.h

15 lines
298 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-24 10:38:35 +01:00
void ECMultBase(GroupElemJac &out, const secp256k1_num_t &gn);
void ECMult(GroupElemJac &out, const GroupElemJac &a, const secp256k1_num_t &an, const secp256k1_num_t &gn);
2013-03-09 22:47:40 +01:00
2013-03-08 02:52:50 +01:00
}
#endif