diff options
author | MITSUNARI Shigeo <herumi@nifty.com> | 2018-03-03 16:36:10 +0800 |
---|---|---|
committer | MITSUNARI Shigeo <herumi@nifty.com> | 2018-03-03 16:36:10 +0800 |
commit | 1b33dcd8f042e3245fd673c7feb34d640cca6dc8 (patch) | |
tree | 270a2326f7e2edca18afd8b0ae5cca4030ed14b4 /include | |
parent | 5d5a5125d9b1b097d9b1f056f0779e1ae28446f3 (diff) | |
download | dexon-mcl-1b33dcd8f042e3245fd673c7feb34d640cca6dc8.tar.gz dexon-mcl-1b33dcd8f042e3245fd673c7feb34d640cca6dc8.tar.zst dexon-mcl-1b33dcd8f042e3245fd673c7feb34d640cca6dc8.zip |
bls12::finalExp is ok
Diffstat (limited to 'include')
-rw-r--r-- | include/mcl/ml-fe.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mcl/ml-fe.hpp b/include/mcl/ml-fe.hpp index db132e0..abd0c7e 100644 --- a/include/mcl/ml-fe.hpp +++ b/include/mcl/ml-fe.hpp @@ -688,7 +688,7 @@ Fp12::pow(y, y, p4 * p2 - 1); #endif #ifdef MCL_USE_BLS12 - exp_d(y, x); + exp_d(y, y); #else exp_d1(y, y); #endif |