diff options
author | MITSUNARI Shigeo <herumi@nifty.com> | 2017-02-13 11:37:23 +0800 |
---|---|---|
committer | MITSUNARI Shigeo <herumi@nifty.com> | 2017-02-13 11:57:20 +0800 |
commit | dda188ddd4369123eab613b1ad531f96f573e2ab (patch) | |
tree | 1d9cbdc9c4f52fe9f042891f9896788ba234b34b /src | |
parent | 56d7a699b44561dff230eca3064ee40c7626dfdf (diff) | |
download | dexon-bls-dda188ddd4369123eab613b1ad531f96f573e2ab.tar dexon-bls-dda188ddd4369123eab613b1ad531f96f573e2ab.tar.gz dexon-bls-dda188ddd4369123eab613b1ad531f96f573e2ab.tar.bz2 dexon-bls-dda188ddd4369123eab613b1ad531f96f573e2ab.tar.lz dexon-bls-dda188ddd4369123eab613b1ad531f96f573e2ab.tar.xz dexon-bls-dda188ddd4369123eab613b1ad531f96f573e2ab.tar.zst dexon-bls-dda188ddd4369123eab613b1ad531f96f573e2ab.zip |
use a new function mapToG1
Diffstat (limited to 'src')
-rw-r--r-- | src/bls.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/src/bls.cpp b/src/bls.cpp index 1254c14..e065911 100644 --- a/src/bls.cpp +++ b/src/bls.cpp @@ -30,16 +30,11 @@ namespace bls { static const G2& getQ() { return *g_pQ; } static const std::vector<Fp6>& getQcoeff() { return *g_pQcoeff; } -static void mapToG1(G1& P, const Fp& t) -{ - BN::param.mapTo.calcG1(P, t); -} - static void HashAndMapToG1(G1& P, const std::string& m) { Fp t; t.setMsg(m); - mapToG1(P, t); + BN::mapToG1(P, t); } template<class T, class G, class Vec> |