]> Git Repo - secp256k1.git/blob - ecmult.h
Comments
[secp256k1.git] / ecmult.h
1 #ifndef _SECP256K1_ECMULT_
2 #define _SECP256K1_ECMULT_
3
4 #include "group.h"
5 #include "num.h"
6
7 namespace secp256k1 {
8
9 void ECMultBase(GroupElemJac &out, const Number &gn);
10 void ECMult(GroupElemJac &out, const GroupElemJac &a, const Number &an, const Number &gn);
11
12 }
13
14 #endif
This page took 0.023155 seconds and 4 git commands to generate.