header fixups

This commit is contained in:
Mirek Kratochvil 2012-03-30 15:06:43 +02:00
parent 85baaa3ac3
commit f212ce4aed
2 changed files with 11 additions and 2 deletions

View file

@ -15,7 +15,7 @@ namespace ccr {
}; };
class permutation : public vector<unsigned int> { class permutation : public std::vector<unsigned int> {
}; };
@ -26,7 +26,14 @@ namespace ccr {
namespace mce { namespace mce {
class privkey { class privkey {
public: public:
matrix matrix Sinv;
permutation Pinv;
matrix h;
permutation hsys;
polynomial g;
matrix sqInv; //"cache"
int decrypt(const bvector&, bvector&); int decrypt(const bvector&, bvector&);
}; };

View file

@ -1,4 +1,6 @@
#include "codecrypt.h"
int main() int main()
{ {
return 0; return 0;