Crypto++
|
GF(2^n) with Pentanomial Basis. More...
#include <gf2n.h>
Public Types | |
typedef T | EuclideanDomain |
typedef T::Element | Element |
Public Member Functions | |
GF2NPP (unsigned int t0, unsigned int t1, unsigned int t2, unsigned int t3, unsigned int t4) | |
GF2NP * | Clone () const |
void | DEREncode (BufferedTransformation &bt) const |
void | DEREncodeElement (BufferedTransformation &out, const Element &a) const |
void | BERDecodeElement (BufferedTransformation &in, Element &a) const |
bool | Equal (const Element &a, const Element &b) const |
bool | IsUnit (const Element &a) const |
unsigned int | MaxElementBitLength () const |
unsigned int | MaxElementByteLength () const |
Element | SquareRoot (const Element &a) const |
Element | HalfTrace (const Element &a) const |
Element | SolveQuadraticEquation (const Element &a) const |
const EuclideanDomain & | GetDomain () const |
const Element & | GetModulus () const |
const Element & | Identity () const |
const Element & | Add (const Element &a, const Element &b) const |
Element & | Accumulate (Element &a, const Element &b) const |
const Element & | Inverse (const Element &a) const |
const Element & | Subtract (const Element &a, const Element &b) const |
Element & | Reduce (Element &a, const Element &b) const |
const Element & | Double (const Element &a) const |
const Element & | MultiplicativeIdentity () const |
const Element & | Multiply (const Element &a, const Element &b) const |
const Element & | Square (const Element &a) const |
const Element & | MultiplicativeInverse (const Element &a) const |
bool | operator== (const QuotientRing< T > &rhs) const |
Protected Attributes | |
unsigned int | m |
EuclideanDomain | m_domain |
Element | m_modulus |
GF(2^n) with Pentanomial Basis.