diff options
author | MITSUNARI Shigeo <herumi@nifty.com> | 2016-08-15 16:06:26 +0800 |
---|---|---|
committer | MITSUNARI Shigeo <herumi@nifty.com> | 2016-08-15 16:06:26 +0800 |
commit | ee8dd587628b0b4bc8eb8e023e5508a2754cc140 (patch) | |
tree | 091d120b744c58041651b4c5099909fe1a0633bc | |
parent | 6d7a12718ba4bc4784c6c86bfdcb49dc0cac6318 (diff) | |
download | dexon-bls-ee8dd587628b0b4bc8eb8e023e5508a2754cc140.tar dexon-bls-ee8dd587628b0b4bc8eb8e023e5508a2754cc140.tar.gz dexon-bls-ee8dd587628b0b4bc8eb8e023e5508a2754cc140.tar.bz2 dexon-bls-ee8dd587628b0b4bc8eb8e023e5508a2754cc140.tar.lz dexon-bls-ee8dd587628b0b4bc8eb8e023e5508a2754cc140.tar.xz dexon-bls-ee8dd587628b0b4bc8eb8e023e5508a2754cc140.tar.zst dexon-bls-ee8dd587628b0b4bc8eb8e023e5508a2754cc140.zip |
G2 supports compressed expression
-rw-r--r-- | src/bls.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bls.cpp b/src/bls.cpp index 6bc5fc6..50e7a1e 100644 --- a/src/bls.cpp +++ b/src/bls.cpp @@ -39,7 +39,7 @@ void init() { BN::init(mcl::bn::CurveFp254BNb); G1::setCompressedExpression(); -// G2::setCompressedExpression(); + G2::setCompressedExpression(); Fr::init(BN::param.r); } |