编译加密库时出现错误
crypto/ope.cpp: In member function ‘NTL::ZZ OPE::encrypt(const NTL::ZZ&, int)’:
crypto/ope.cpp:80: error: expected primary-expression before ‘[’ token
crypto/ope.cpp:80: error: expected primary-expression before ‘const’
crypto/ope.cpp:80: error: expected primary-expression before ‘const’
crypto/ope.cpp: In member function ‘NTL::ZZ OPE::decrypt(const NTL::ZZ&)’:
crypto/ope.cpp:110: error: expected primary-expression before ‘[’ token
crypto/ope.cpp:110: error: expected primary-expression before ‘const’
crypto/ope.cpp:110: error: expected primary-expression before ‘const’
代码片段如下:
template<class CB>
ope_domain_range
OPE::search(CB go_low)
{
blockrng<AES> r(aesk);
return lazy_sample(to_ZZ(0), to_ZZ(1) << pbits,
to_ZZ(0), to_ZZ(1) << cbits,
go_low, &r);
}
ZZ
OPE::encrypt(const ZZ &ptext, int offset)
{
ope_domain_range dr =
search([&ptext](const ZZ &d, const ZZ &) { return ptext < d; });
blockrng<AES> aesrand(aesk);
auto v = sha256::hash(StringFromZZ(ptext));
v.resize(16);
aesrand.set_ctr(v);
ZZ nrange = dr.r_hi - dr.r_lo + 1;
if (nrange < 4 || det)
return dr.r_lo + aesrand.rand_zz_mod(nrange);
ZZ nrquad = nrange / 4;
static urandom urand;
switch (offset) {
case -1:
return dr.r_lo + urand.rand_zz_mod(nrquad);
case 0:
return dr.r_lo + nrquad + urand.rand_zz_mod(nrquad * 2);
case 1:
return dr.r_lo + nrquad * 3 + urand.rand_zz_mod(nrquad);
default:
assert(0);
}
}
第 80 行的代码是(第 110 行的代码类似):
ope_domain_range dr =
search([&ptext](const ZZ &d, const ZZ &) { return ptext < d; });
我对新的 C++ 标准 C++11 不太熟悉。这是新标准新引入的吗?如果不是,那是什么意思?如果是,我可以用 g++ 版本 4.4.7 编译 C++11 代码吗?(目前我使用标记为 -std=c++0x 的 g++ 4.4.7 编译库。)
非常感谢。