signatures, empty functions for mce/nd
This commit is contained in:
parent
2d37a6dee9
commit
10738598d9
|
@ -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
30
lib/mce.cpp
Normal 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
30
lib/nd.cpp
Normal 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)
|
||||
{
|
||||
|
||||
}
|
Loading…
Reference in a new issue