aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMITSUNARI Shigeo <herumi@nifty.com>2018-07-10 14:18:19 +0800
committerMITSUNARI Shigeo <herumi@nifty.com>2018-07-10 14:18:19 +0800
commit78289c408d8baf7a8ce5880dc71fe118912b5d02 (patch)
treed3df7b209e024bed8cfdeffe527ae5872490c222
parent6a713299b3c5c4fb0adea7d1f978401abb5eb711 (diff)
downloadtangerine-mcl-78289c408d8baf7a8ce5880dc71fe118912b5d02.tar.gz
tangerine-mcl-78289c408d8baf7a8ce5880dc71fe118912b5d02.tar.zst
tangerine-mcl-78289c408d8baf7a8ce5880dc71fe118912b5d02.zip
fix compile error
-rw-r--r--sample/bls_sig.cpp11
-rw-r--r--sample/large.cpp2
2 files changed, 3 insertions, 10 deletions
diff --git a/sample/bls_sig.cpp b/sample/bls_sig.cpp
index c574087..d75f7d4 100644
--- a/sample/bls_sig.cpp
+++ b/sample/bls_sig.cpp
@@ -8,14 +8,7 @@
*/
#include <mcl/bn256.hpp>
-
-#if CYBOZU_CPP_VERSION >= CYBOZU_CPP_VERSION_CPP11
-#include <random>
-std::random_device g_rg;
-#else
-#include <cybozu/random_generator.hpp>
-cybozu::RandomGenerator g_rg;
-#endif
+#include <iostream>
using namespace mcl::bn256;
@@ -28,7 +21,7 @@ void Hash(G1& P, const std::string& m)
void KeyGen(Fr& s, G2& pub, const G2& Q)
{
- s.setRand(g_rg);
+ s.setRand();
G2::mul(pub, Q, s); // pub = sQ
}
diff --git a/sample/large.cpp b/sample/large.cpp
index 8c1c74c..60b2ac9 100644
--- a/sample/large.cpp
+++ b/sample/large.cpp
@@ -4,7 +4,7 @@
*/
#include <mcl/fp.hpp>
#include <cybozu/benchmark.hpp>
-#include <sstream>
+#include <iostream>
#include "../src/low_func.hpp"
typedef mcl::FpT<> Fp;