signatures, empty functions for mce/nd

This commit is contained in:
Mirek Kratochvil 2012-04-01 17:48:33 +02:00
parent 2d37a6dee9
commit 10738598d9
3 changed files with 65 additions and 1 deletions

View file

@ -86,6 +86,7 @@ public:
matrix sqInv; //"cache"
int decrypt (const bvector&, bvector&);
int sign (const bvector&, bvector&, uint, prng&);
};
class pubkey
@ -94,6 +95,7 @@ public:
matrix G;
uint t;
int encrypt (const bvector&, bvector&, prng&);
int verify (const bvector&, const bvector&, uint);
};
int generate (pubkey&, privkey&, prng&);
@ -107,9 +109,10 @@ namespace nd
class privkey
{
public:
/*todo stuff*/
// TODO
int decrypt (const bvector&, bvector&);
int sign (const bvector&hash, bvector&sig, uint, prng&);
};
class pubkey
@ -119,6 +122,7 @@ public:
uint t;
int encrypt (const bvector&, bvector&, prng&);
int verify (const bvector&sig, const bvector&hash, uint);
};
int generate (pubkey&, privkey&, prng&);

30
lib/mce.cpp Normal file
View file

@ -0,0 +1,30 @@
#include "codecrypt.h"
using namespace ccr;
using namespace ccr::mce;
int generate (pubkey&pub, privkey&priv, prng&rng)
{
}
int pubkey::encrypt (const bvector& in, bvector&out, prng&rng)
{
}
int privkey::decrypt (const bvector&in, bvector&out)
{
}
int privkey::sign (const bvector&in, bvector&out, uint min_delta, prng&rng)
{
}
int pubkey::verify (const bvector&in, const bvector&hash, uint missing)
{
}

30
lib/nd.cpp Normal file
View file

@ -0,0 +1,30 @@
#include "codecrypt.h"
using namespace ccr;
using namespace ccr::nd;
int generate (pubkey&pub, privkey&priv, prng&rng)
{
}
int pubkey::encrypt (const bvector& in, bvector&out, prng&rng)
{
}
int privkey::decrypt (const bvector&in, bvector&out)
{
}
int privkey::sign (const bvector&in, bvector&out, uint min_delta, prng&rng)
{
}
int pubkey::verify (const bvector&in, const bvector&hash, uint missing)
{
}