Crypto++  5.6.4
Free C++ class library of cryptographic schemes
Public Types | Public Member Functions | List of all members
ECP Class Reference

Elliptic Curve over GF(p), where p is prime. More...

+ Inheritance diagram for ECP:

Public Types

typedef ModularArithmetic Field
 
typedef Integer FieldElement
 
typedef ECPPoint Point
 
- Public Types inherited from AbstractGroup< ECPPoint >
typedef ECPPoint Element
 

Public Member Functions

 ECP (const ECP &ecp, bool convertToMontgomeryRepresentation=false)
 
 ECP (const Integer &modulus, const FieldElement &a, const FieldElement &b)
 
 ECP (BufferedTransformation &bt)
 
void DEREncode (BufferedTransformation &bt) const
 
bool Equal (const Point &P, const Point &Q) const
 Compare two elements for equality. More...
 
const PointIdentity () const
 
const PointInverse (const Point &P) const
 Inverts the element in the group. More...
 
bool InversionIsFast () const
 
const PointAdd (const Point &P, const Point &Q) const
 Adds elements in the group. More...
 
const PointDouble (const Point &P) const
 
Point ScalarMultiply (const Point &P, const Integer &k) const
 
Point CascadeScalarMultiply (const Point &P, const Integer &k1, const Point &Q, const Integer &k2) const
 
void SimultaneousMultiply (Point *results, const Point &base, const Integer *exponents, unsigned int exponentsCount) const
 
Point Multiply (const Integer &k, const Point &P) const
 
Point CascadeMultiply (const Integer &k1, const Point &P, const Integer &k2, const Point &Q) const
 
bool ValidateParameters (RandomNumberGenerator &rng, unsigned int level=3) const
 
bool VerifyPoint (const Point &P) const
 
unsigned int EncodedPointSize (bool compressed=false) const
 
bool DecodePoint (Point &P, BufferedTransformation &bt, size_t len) const
 
bool DecodePoint (Point &P, const byte *encodedPoint, size_t len) const
 
void EncodePoint (byte *encodedPoint, const Point &P, bool compressed) const
 
void EncodePoint (BufferedTransformation &bt, const Point &P, bool compressed) const
 
Point BERDecodePoint (BufferedTransformation &bt) const
 
void DEREncodePoint (BufferedTransformation &bt, const Point &P, bool compressed) const
 
Integer FieldSize () const
 
const FieldGetField () const
 
const FieldElementGetA () const
 
const FieldElementGetB () const
 
bool operator== (const ECP &rhs) const
 
- Public Member Functions inherited from AbstractGroup< ECPPoint >
virtual const ElementIdentity () const=0
 Provides the Identity element. More...
 
virtual bool InversionIsFast () const
 Determine if inversion is fast. More...
 
virtual const ElementDouble (const Element &a) const
 Doubles an element in the group. More...
 
virtual const ElementSubtract (const Element &a, const Element &b) const
 Subtracts elements in the group. More...
 
virtual ElementAccumulate (Element &a, const Element &b) const
 TODO. More...
 
virtual ElementReduce (Element &a, const Element &b) const
 Reduces an element in the congruence class. 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...
 

Detailed Description

Elliptic Curve over GF(p), where p is prime.

Definition at line 42 of file ecp.h.

Member Function Documentation

◆ Equal()

bool ECP::Equal ( const Point a,
const Point b 
) const
virtual

Compare two elements for equality.

Parameters
afirst element
bsecond element
Returns
true if the elements are equal, false otherwise Equal() tests the elements for equality using a==b

Implements AbstractGroup< ECPPoint >.

◆ Inverse()

const Point& ECP::Inverse ( const Point a) const
virtual

Inverts the element in the group.

Parameters
afirst element
Returns
the inverse of the element

Implements AbstractGroup< ECPPoint >.

◆ Add()

const Point& ECP::Add ( const Point a,
const Point b 
) const
virtual

Adds elements in the group.

Parameters
afirst element
bsecond element
Returns
the sum of a and b

Implements AbstractGroup< ECPPoint >.


The documentation for this class was generated from the following file: