more of the continuing C++ outbreak

This commit is contained in:
Mirek Kratochvil 2012-04-01 13:51:59 +02:00
parent f212ce4aed
commit 2d37a6dee9
7 changed files with 178 additions and 45 deletions

Binary file not shown.

View file

@ -4,70 +4,127 @@
#include <vector> #include <vector>
namespace ccr { namespace ccr
{
typedef std::vector<bool> bvector; typedef unsigned int uint;
//for broken/old/weird STL uncomment this:
//typedef std::bit_vector bvector;
//TODO ifdef
class matrix : public std::vector<bvector> { /*
* vector over GF(2). We rely on STL's vector<bool> == bit_vector
* specialization for efficiency.
*/
class bvector : public std::vector<bool>
{
public:
uint hamming_weight();
};
}; /*
* pseudorandom number generator. Meant to be inherited and
* instantiated by the user
*/
class prng
{
public:
virtual int random (uint) = 0;
virtual void request_seed (uint) = 0;
};
class permutation : public std::vector<unsigned int> { /*
* matrix over GF(2) is a vector of columns
*/
class matrix : public std::vector<bvector>
{
public:
matrix operator* (const matrix&);
}; bool compute_inversion (matrix&);
void generate_random_invertible (uint, prng&);
void unit (uint);
void compute_transpose (matrix&);
};
class polynomial : public bvector { /*
* permutation is stored as transposition table ordered from zero
* e.g. (13)(2) is [2,1,0]
*/
class permutation : public std::vector<uint>
{
void compute_inversion (permutation&);
}; void generate_random (uint n, prng&);
void permute_rows (const matrix&, matrix&);
void permute_cols (const matrix&, matrix&);
};
namespace mce { /*
class privkey { * polynomial over GF(2) is effectively a vector with a_n binary values
public: * with some added operations.
matrix Sinv; */
permutation Pinv; class polynomial : public bvector
{
bool is_irreducible();
matrix h; void generate_random_irreducible (uint n, prng&);
permutation hsys; };
polynomial g; /*
matrix sqInv; //"cache" * classical McEliece
*/
namespace mce
{
class privkey
{
public:
matrix Sinv;
permutation Pinv;
int decrypt(const bvector&, bvector&); matrix h;
}; permutation hsys;
class pubkey { polynomial g;
public: matrix sqInv; //"cache"
matrix G;
int t;
int encrypt(const bvector&, bvector&);
};
int generate(pubkey&,privkey&); int decrypt (const bvector&, bvector&);
} };
namespace nd { class pubkey
class privkey { {
public:
matrix G;
uint t;
int encrypt (const bvector&, bvector&, prng&);
};
int decrypt(const bvector&, bvector&); int generate (pubkey&, privkey&, prng&);
}; }
class pubkey { /*
public: * classical Niederreiter
matrix H; */
int t; namespace nd
{
class privkey
{
public:
/*todo stuff*/
int encrypt(const bvector&, bvector&); int decrypt (const bvector&, bvector&);
}; };
int generate(pubkey&,privkey&); class pubkey
} {
public:
matrix H;
uint t;
//TODO entropy sources int encrypt (const bvector&, bvector&, prng&);
};
} //namespace CCR int generate (pubkey&, privkey&, prng&);
}
} //namespace ccr
#endif // _CODECRYPT_H_ #endif // _CODECRYPT_H_

11
lib/bvector.cpp Normal file
View file

@ -0,0 +1,11 @@
#include "codecrypt.h"
using namespace ccr;
uint bvector::hamming_weight()
{
uint r = 0;
for (uint i = 0; i < size(); ++i) if ( (*this) [i]) ++r;
return r;
}

View file

25
lib/matrix.cpp Normal file
View file

@ -0,0 +1,25 @@
#include "codecrypt.h"
using namespace ccr;
void matrix::unit (uint size)
{
}
bool matrix::compute_inversion (matrix&r)
{
return false;
}
void matrix::generate_random_invertible (uint size, prng&rng)
{
}
void matrix::compute_transpose (matrix&r)
{
}

25
lib/permutation.cpp Normal file
View file

@ -0,0 +1,25 @@
#include "codecrypt.h"
using namespace ccr;
void permutation::compute_inversion (permutation&r)
{
}
void permutation::generate_random (uint size, prng&rng)
{
}
void permutation::permute_cols (const matrix&a, matrix&r)
{
}
void permutation::permute_rows (const matrix&a, matrix&r)
{
}

15
lib/polynomial.cpp Normal file
View file

@ -0,0 +1,15 @@
#include "codecrypt.h"
using namespace ccr;
bool polynomial::is_irreducible()
{
}
void polynomial::generate_random_irreducible (uint size, prng&rng)
{
}