- Implemented determinant function - Added more function overloads for convenience - Fixed some typing issues - Added semi-proper function chaining Changed how Vectors handle recieving arrays Fixed small issue with namespaces not being used Started structuring Galois class
29 lines
729 B
C++
29 lines
729 B
C++
#pragma once
|
|
|
|
namespace CryptoCPP {
|
|
namespace Math {
|
|
class Galois
|
|
{
|
|
public:
|
|
Galois(size_t characteristic, size_t exponent, size_t irreducible);
|
|
|
|
Galois * add(const Galois * value) const; // Add
|
|
Galois * sub(const Galois * value) const; // Subtract
|
|
Galois * mul(const Galois * value) const; // Multiply
|
|
Galois * inv(const Galois * value) const; // Inverse multiply
|
|
|
|
|
|
protected:
|
|
size_t characteristic, exponent, irreducible;
|
|
|
|
// Reduce the value of this galois to one that fits the field parameters
|
|
void reduce();
|
|
|
|
// Self-mutable operations
|
|
void iadd(const Galois * value);
|
|
void isub(const Galois * value);
|
|
void imul(const Galois * value);
|
|
void iinv(const Galois * value);
|
|
};
|
|
}
|
|
} |