mce_qd: encryption fixed
This commit is contained in:
parent
63e3e591b6
commit
5b69b38e09
|
@ -395,10 +395,10 @@ public:
|
||||||
int prepare();
|
int prepare();
|
||||||
|
|
||||||
uint cipher_size() {
|
uint cipher_size() {
|
||||||
return 0; //TODO
|
return (1 << T) * block_count;
|
||||||
}
|
}
|
||||||
uint plain_size() {
|
uint plain_size() {
|
||||||
return 0; //TODO
|
return (1 << T) * (block_count - fld.m);
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -406,16 +406,15 @@ class pubkey
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
uint T;
|
uint T;
|
||||||
uint k;
|
|
||||||
std::vector<bvector> qd_sigs;
|
std::vector<bvector> qd_sigs;
|
||||||
|
|
||||||
int encrypt (const bvector&, bvector&, prng&);
|
int encrypt (const bvector&, bvector&, prng&);
|
||||||
|
|
||||||
uint cipher_size() {
|
uint cipher_size() {
|
||||||
return 0; //TODO
|
return plain_size() + qd_sigs[0].size();
|
||||||
}
|
}
|
||||||
uint plain_size() {
|
uint plain_size() {
|
||||||
return 0; //TODO
|
return (1 << T) * qd_sigs.size();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -37,6 +37,10 @@ void fwht_dyadic_multiply (const bvector& a, const bvector& b, bvector& out)
|
||||||
vector<int> t, A, B;
|
vector<int> t, A, B;
|
||||||
uint i;
|
uint i;
|
||||||
|
|
||||||
|
t.resize (a.size() );
|
||||||
|
A.resize (a.size() );
|
||||||
|
B.resize (a.size() );
|
||||||
|
|
||||||
for (i = 0; i < a.size(); ++i) t[i] = a[i];
|
for (i = 0; i < a.size(); ++i) t[i] = a[i];
|
||||||
fwht (t, A);
|
fwht (t, A);
|
||||||
|
|
||||||
|
|
|
@ -31,7 +31,7 @@ static uint choose_random (uint limit, prng&rng, std::set<uint>used)
|
||||||
}
|
}
|
||||||
|
|
||||||
int mce_qd::generate (pubkey&pub, privkey&priv, prng&rng,
|
int mce_qd::generate (pubkey&pub, privkey&priv, prng&rng,
|
||||||
uint m, uint T, uint block_count)
|
uint m, uint T, uint block_discard)
|
||||||
{
|
{
|
||||||
priv.fld.create (m);
|
priv.fld.create (m);
|
||||||
priv.T = T;
|
priv.T = T;
|
||||||
|
@ -87,6 +87,17 @@ int mce_qd::generate (pubkey&pub, privkey&priv, prng&rng,
|
||||||
|
|
||||||
//from now on, we fix 'omega' from the paper to zero.
|
//from now on, we fix 'omega' from the paper to zero.
|
||||||
|
|
||||||
|
//assemble goppa polynomial.
|
||||||
|
g.clear();
|
||||||
|
g.resize (1, 1); //g(x)=1 so we can multiply it
|
||||||
|
polynomial tmp;
|
||||||
|
tmp.resize (2, 1); //tmp(x)=x-1
|
||||||
|
for (uint i = 0; i < t; ++i) {
|
||||||
|
//tmp(x)=x-z=x-(1/h_i)
|
||||||
|
tmp[0] = fld.inv (Hsig[i]);
|
||||||
|
g.mult (tmp, fld);
|
||||||
|
}
|
||||||
|
|
||||||
//compute the support, retry if it has two equal elements.
|
//compute the support, retry if it has two equal elements.
|
||||||
used.clear();
|
used.clear();
|
||||||
bool consistent = true;
|
bool consistent = true;
|
||||||
|
@ -99,24 +110,22 @@ int mce_qd::generate (pubkey&pub, privkey&priv, prng&rng,
|
||||||
consistent = false;
|
consistent = false;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (g.eval (support[i], fld) == 0) {
|
||||||
|
consistent = false;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
used.insert (support[i]);
|
used.insert (support[i]);
|
||||||
}
|
}
|
||||||
if (!consistent) continue; //retry
|
if (!consistent) continue; //retry
|
||||||
|
|
||||||
//assemble goppa polynomial.
|
|
||||||
g.clear();
|
|
||||||
g.resize (1, 1); //g(x)=1 so we can multiply it
|
|
||||||
polynomial tmp;
|
|
||||||
tmp.resize (2, 1); //tmp(x)=x-1
|
|
||||||
for (uint i = 0; i < t; ++i) {
|
|
||||||
//tmp(x)=x-z=x-(1/h_i)
|
|
||||||
tmp[0] = fld.inv (Hsig[i]);
|
|
||||||
g.mult (tmp, fld);
|
|
||||||
}
|
|
||||||
|
|
||||||
//now the blocks.
|
//now the blocks.
|
||||||
uint block_size = 1 << T,
|
uint block_size = 1 << T,
|
||||||
h_block_count = (fld.n / 2) / block_size;
|
h_block_count = (fld.n / 2) / block_size;
|
||||||
|
uint& block_count = priv.block_count;
|
||||||
|
block_count = h_block_count - block_discard;
|
||||||
|
|
||||||
//assemble blocks to bl
|
//assemble blocks to bl
|
||||||
std::vector<std::vector<uint> > bl, blp;
|
std::vector<std::vector<uint> > bl, blp;
|
||||||
|
@ -134,7 +143,6 @@ int mce_qd::generate (pubkey&pub, privkey&priv, prng&rng,
|
||||||
blp.resize (block_count);
|
blp.resize (block_count);
|
||||||
|
|
||||||
//permute individual blocks
|
//permute individual blocks
|
||||||
priv.block_count = block_count;
|
|
||||||
priv.block_perms.resize (block_count);
|
priv.block_perms.resize (block_count);
|
||||||
bl.resize (blp.size() );
|
bl.resize (blp.size() );
|
||||||
for (uint i = 0; i < block_count; ++i) {
|
for (uint i = 0; i < block_count; ++i) {
|
||||||
|
@ -182,7 +190,6 @@ int mce_qd::generate (pubkey&pub, privkey&priv, prng&rng,
|
||||||
*/
|
*/
|
||||||
|
|
||||||
pub.T = T;
|
pub.T = T;
|
||||||
pub.k = (block_count - fld.m) * block_size;
|
|
||||||
pub.qd_sigs.resize (ri.width() / t);
|
pub.qd_sigs.resize (ri.width() / t);
|
||||||
for (uint i = 0; i < ri.width(); i += t)
|
for (uint i = 0; i < ri.width(); i += t)
|
||||||
pub.qd_sigs[i/t] = ri[i];
|
pub.qd_sigs[i/t] = ri[i];
|
||||||
|
@ -251,7 +258,6 @@ int pubkey::encrypt (const bvector& in, bvector&out, prng&rng)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
//some checks
|
//some checks
|
||||||
if (in.size() != k) return 1;
|
|
||||||
if (!qd_sigs.size() ) return 1;
|
if (!qd_sigs.size() ) return 1;
|
||||||
if (qd_sigs[0].size() % t) return 1;
|
if (qd_sigs[0].size() % t) return 1;
|
||||||
|
|
||||||
|
@ -262,11 +268,11 @@ int pubkey::encrypt (const bvector& in, bvector&out, prng&rng)
|
||||||
g.resize (t);
|
g.resize (t);
|
||||||
r.resize (t);
|
r.resize (t);
|
||||||
|
|
||||||
for (uint i = 0; i < blocks; ++i) {
|
for (uint i = 0; i < qd_sigs.size(); ++i) {
|
||||||
//plaintext block
|
//plaintext block
|
||||||
for (uint k = 0; k < t; ++k) p[k] = in[k+i*t];
|
for (uint k = 0; k < t; ++k) p[k] = in[k+i*t];
|
||||||
|
|
||||||
for (uint j = 0; j < qd_sigs.size(); ++j) {
|
for (uint j = 0; j < blocks; ++j) {
|
||||||
//checksum block
|
//checksum block
|
||||||
for (uint k = 0; k < t; ++k) g[k] = qd_sigs[i][k+j*t];
|
for (uint k = 0; k < t; ++k) g[k] = qd_sigs[i][k+j*t];
|
||||||
|
|
||||||
|
@ -278,7 +284,7 @@ int pubkey::encrypt (const bvector& in, bvector&out, prng&rng)
|
||||||
|
|
||||||
//generate t errors
|
//generate t errors
|
||||||
bvector e;
|
bvector e;
|
||||||
e.resize (k + qd_sigs[0].size(), 0);
|
e.resize (cipher_size(), 0);
|
||||||
for (uint n = t; n > 0;) {
|
for (uint n = t; n > 0;) {
|
||||||
uint p = rng.random (e.size() );
|
uint p = rng.random (e.size() );
|
||||||
if (!e[p]) {
|
if (!e[p]) {
|
||||||
|
|
13
src/main.cpp
13
src/main.cpp
|
@ -24,18 +24,15 @@ int main()
|
||||||
primitiverng r;
|
primitiverng r;
|
||||||
r.seed (0);
|
r.seed (0);
|
||||||
|
|
||||||
ccr::mce_oc::privkey priv;
|
ccr::mce_qd::privkey priv;
|
||||||
ccr::mce_oc::pubkey pub;
|
ccr::mce_qd::pubkey pub;
|
||||||
ccr::mce_oc::generate (pub, priv, r, 7, 2, 2);
|
ccr::mce_qd::generate (pub, priv, r, 5, 1, 1);
|
||||||
|
|
||||||
priv.prepare();
|
priv.prepare();
|
||||||
|
|
||||||
cout << "PUBLIC KEY" << endl;
|
cout << "cipher size: " << priv.cipher_size() << ' ' << pub.cipher_size() << endl;
|
||||||
cout << pub.t << endl;
|
cout << "plain size: " << priv.plain_size() << ' ' << pub.plain_size() << endl;
|
||||||
cout << pub.G;
|
|
||||||
|
|
||||||
#if 0
|
|
||||||
/* mce encryption test */
|
|
||||||
ccr::bvector plain;
|
ccr::bvector plain;
|
||||||
plain.resize (pub.plain_size(), 0);
|
plain.resize (pub.plain_size(), 0);
|
||||||
plain[0] = 1;
|
plain[0] = 1;
|
||||||
|
|
Loading…
Reference in a new issue