From dda188ddd4369123eab613b1ad531f96f573e2ab Mon Sep 17 00:00:00 2001 From: MITSUNARI Shigeo Date: Mon, 13 Feb 2017 12:37:23 +0900 Subject: use a new function mapToG1 --- src/bls.cpp | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'src') 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& 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 -- cgit v1.2.3