aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMITSUNARI Shigeo <herumi@nifty.com>2017-02-18 10:34:27 +0800
committerMITSUNARI Shigeo <herumi@nifty.com>2017-02-18 10:34:27 +0800
commit4e9bdd197c90c6005a62473691c075260e4079ff (patch)
tree4f832cc22db52ccf55a3c5434727b5ffbe1836e9
parentb12f64870e9e423bcbd8c17747cb0dd4c9221358 (diff)
downloadtangerine-mcl-4e9bdd197c90c6005a62473691c075260e4079ff.tar.gz
tangerine-mcl-4e9bdd197c90c6005a62473691c075260e4079ff.tar.zst
tangerine-mcl-4e9bdd197c90c6005a62473691c075260e4079ff.zip
change init function name
-rw-r--r--include/mcl/ahe.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/mcl/ahe.hpp b/include/mcl/ahe.hpp
index 4848160..6418a5a 100644
--- a/include/mcl/ahe.hpp
+++ b/include/mcl/ahe.hpp
@@ -25,7 +25,7 @@ typedef ElgamalEc::PrivateKey SecretKey;
typedef ElgamalEc::PublicKey PublicKey;
typedef ElgamalEc::CipherText CipherText;
-static inline void ahe192init()
+static inline void initAhe()
{
Fp::init(para.p);
Zn::init(para.n);
@@ -55,7 +55,7 @@ typedef ElgamalEc::PrivateKey SecretKey;
typedef ElgamalEc::PublicKey PublicKey;
typedef ElgamalEc::CipherText CipherText;
-static inline void ahe256init()
+static inline void initAhe()
{
Fp::init(para.p);
Zn::init(para.n);