|
Crypto++
8.9
Free C++ class library of cryptographic schemes
|
Ring of polynomials over another ring. More...
Inheritance diagram for RingOfPolynomialsOver< T >:Classes | |
| class | InterpolationFailed |
Public Types | |
| typedef T | CoefficientRing |
| typedef PolynomialOver< T > | Element |
| typedef Element::CoefficientType | CoefficientType |
| typedef Element::RandomizationParameter | RandomizationParameter |
Public Types inherited from AbstractEuclideanDomain< PolynomialOver< T > > | |
| typedef PolynomialOver< T > | Element |
Public Types inherited from AbstractRing< T > | |
| typedef T | Element |
Public Types inherited from AbstractGroup< T > | |
| typedef T | Element |
Public Member Functions | |
| RingOfPolynomialsOver (const CoefficientRing &ring) | |
| Element | RandomElement (RandomNumberGenerator &rng, const RandomizationParameter ¶meter) |
| bool | Equal (const Element &a, const Element &b) const |
| Compare two elements for equality. More... | |
| const Element & | Identity () const |
| Provides the Identity element. More... | |
| const Element & | Add (const Element &a, const Element &b) const |
| Adds elements in the group. More... | |
| Element & | Accumulate (Element &a, const Element &b) const |
| TODO. More... | |
| const Element & | Inverse (const Element &a) const |
| Inverts the element in the group. More... | |
| const Element & | Subtract (const Element &a, const Element &b) const |
| Subtracts elements in the group. More... | |
| Element & | Reduce (Element &a, const Element &b) const |
| Reduces an element in the congruence class. More... | |
| const Element & | Double (const Element &a) const |
| Doubles an element in the group. More... | |
| const Element & | MultiplicativeIdentity () const |
| Retrieves the multiplicative identity. More... | |
| const Element & | Multiply (const Element &a, const Element &b) const |
| Multiplies elements in the group. More... | |
| const Element & | Square (const Element &a) const |
| Square an element in the group. More... | |
| bool | IsUnit (const Element &a) const |
| Determines whether an element is a unit in the group. More... | |
| const Element & | MultiplicativeInverse (const Element &a) const |
| Calculate the multiplicative inverse of an element in the group. More... | |
| const Element & | Divide (const Element &a, const Element &b) const |
| Divides elements in the group. More... | |
| const Element & | Mod (const Element &a, const Element &b) const |
| Performs a modular reduction in the ring. More... | |
| void | DivisionAlgorithm (Element &r, Element &q, const Element &a, const Element &d) const |
| Performs the division algorithm on two elements in the ring. More... | |
| Element | Interpolate (const CoefficientType x[], const CoefficientType y[], unsigned int n) const |
| CoefficientType | InterpolateAt (const CoefficientType &position, const CoefficientType x[], const CoefficientType y[], unsigned int n) const |
Public Member Functions inherited from AbstractEuclideanDomain< PolynomialOver< T > > | |
| virtual const Element & | Gcd (const Element &a, const Element &b) const |
| Calculates the greatest common denominator in the ring. More... | |
Public Member Functions inherited from AbstractRing< T > | |
| AbstractRing () | |
| Construct an AbstractRing. | |
| AbstractRing (const AbstractRing &source) | |
| Copy construct an AbstractRing. More... | |
| AbstractRing & | operator= (const AbstractRing &source) |
| Assign an AbstractRing. More... | |
| virtual Element | Exponentiate (const Element &a, const Integer &e) const |
| Raises a base to an exponent in the group. More... | |
| virtual Element | CascadeExponentiate (const Element &x, const Integer &e1, const Element &y, const Integer &e2) const |
| TODO. More... | |
| virtual void | SimultaneousExponentiate (Element *results, const Element &base, const Integer *exponents, unsigned int exponentsCount) const |
| Exponentiates a base to multiple exponents in the Ring. More... | |
| virtual const AbstractGroup< T > & | MultiplicativeGroup () const |
| Retrieves the multiplicative group. More... | |
Public Member Functions inherited from AbstractGroup< T > | |
| virtual bool | InversionIsFast () const |
| Determine if inversion is fast. More... | |
| virtual Element | ScalarMultiply (const Element &a, const Integer &e) const |
| Performs a scalar multiplication. More... | |
| virtual Element | CascadeScalarMultiply (const Element &x, const Integer &e1, const Element &y, const Integer &e2) const |
| TODO. More... | |
| virtual void | SimultaneousMultiply (Element *results, const Element &base, const Integer *exponents, unsigned int exponentsCount) const |
| Multiplies a base to multiple exponents in a group. More... | |
Ring of polynomials over another ring.
Definition at line 314 of file polynomi.h.
|
inlinevirtual |
Compare two elements for equality.
| a | first element |
| b | second element |
Equal() tests the elements for equality using a==b
Implements AbstractGroup< T >.
Definition at line 327 of file polynomi.h.
|
inlinevirtual |
Provides the Identity element.
Implements AbstractGroup< T >.
Definition at line 330 of file polynomi.h.
|
inlinevirtual |
Adds elements in the group.
| a | first element |
| b | second element |
a and b Implements AbstractGroup< T >.
Definition at line 333 of file polynomi.h.
|
inlinevirtual |
TODO.
| a | first element |
| b | second element |
Reimplemented from AbstractGroup< T >.
Definition at line 336 of file polynomi.h.
|
inlinevirtual |
Inverts the element in the group.
| a | first element |
Implements AbstractGroup< T >.
Definition at line 339 of file polynomi.h.
|
inlinevirtual |
Subtracts elements in the group.
| a | first element |
| b | second element |
a and b. The element a must provide a Subtract member function. Reimplemented from AbstractGroup< T >.
Definition at line 342 of file polynomi.h.
|
inlinevirtual |
Reduces an element in the congruence class.
| a | element to reduce |
| b | the congruence class |
Reimplemented from AbstractGroup< T >.
Definition at line 345 of file polynomi.h.
|
inlinevirtual |
Doubles an element in the group.
| a | the element |
Reimplemented from AbstractGroup< T >.
Definition at line 348 of file polynomi.h.
|
inlinevirtual |
Retrieves the multiplicative identity.
Implements AbstractRing< T >.
Definition at line 351 of file polynomi.h.
|
inlinevirtual |
Multiplies elements in the group.
| a | the multiplicand |
| b | the multiplier |
Implements AbstractRing< T >.
Definition at line 354 of file polynomi.h.
|
inlinevirtual |
Square an element in the group.
| a | the element |
Reimplemented from AbstractRing< T >.
Definition at line 357 of file polynomi.h.
|
inlinevirtual |
Determines whether an element is a unit in the group.
| a | the element |
Implements AbstractRing< T >.
Definition at line 360 of file polynomi.h.
|
inlinevirtual |
Calculate the multiplicative inverse of an element in the group.
| a | the element |
Implements AbstractRing< T >.
Definition at line 363 of file polynomi.h.
|
inlinevirtual |
Divides elements in the group.
| a | the dividend |
| b | the divisor |
Reimplemented from AbstractRing< T >.
Definition at line 366 of file polynomi.h.
|
inlinevirtual |
Performs a modular reduction in the ring.
| a | the element |
| b | the modulus |
ab. Implements AbstractEuclideanDomain< PolynomialOver< T > >.
Definition at line 369 of file polynomi.h.
|
inlinevirtual |
Performs the division algorithm on two elements in the ring.
| r | the remainder |
| q | the quotient |
| a | the dividend |
| d | the divisor |
Implements AbstractEuclideanDomain< PolynomialOver< T > >.
Definition at line 372 of file polynomi.h.