|
| | EC2N () |
| | Construct an EC2N.
|
| | EC2N (const Field &field, const Field::Element &a, const Field::Element &b) |
| | Construct an EC2N.
|
| | EC2N (BufferedTransformation &bt) |
| | Construct an EC2N from BER encoded parameters.
|
| void | DEREncode (BufferedTransformation &bt) const |
| | Encode the fields fieldID and curve of the sequence ECParameters.
|
| bool | Equal (const Point &P, const Point &Q) const |
| | Compare two elements for equality.
|
| const Point & | Identity () const |
| | Provides the Identity element.
|
| const Point & | Inverse (const Point &P) const |
| | Inverts the element in the group.
|
| bool | InversionIsFast () const |
| | Determine if inversion is fast.
|
| const Point & | Add (const Point &P, const Point &Q) const |
| | Adds elements in the group.
|
| const Point & | Double (const Point &P) const |
| | Doubles an element in the group.
|
| 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 |
| | Verifies points on elliptic curve.
|
| unsigned int | EncodedPointSize (bool compressed=false) const |
| | Determines encoded point size.
|
| bool | DecodePoint (Point &P, BufferedTransformation &bt, size_t len) const |
| | Decodes an elliptic curve point.
|
|
bool | DecodePoint (Point &P, const byte *encodedPoint, size_t len) const |
| void | EncodePoint (byte *encodedPoint, const Point &P, bool compressed) const |
| | Encodes an elliptic curve point.
|
|
void | EncodePoint (BufferedTransformation &bt, const Point &P, bool compressed) const |
| Point | BERDecodePoint (BufferedTransformation &bt) const |
| | BER Decodes an elliptic curve point.
|
| void | DEREncodePoint (BufferedTransformation &bt, const Point &P, bool compressed) const |
| | DER Encodes an elliptic curve point.
|
| Integer | FieldSize () const |
| const Field & | GetField () const |
| const FieldElement & | GetA () const |
| const FieldElement & | GetB () const |
| bool | operator== (const EC2N &rhs) const |
| virtual const Element & | Subtract (const Element &a, const Element &b) const |
| | Subtracts elements in the group.
|
| virtual Element & | Accumulate (Element &a, const Element &b) const |
| | TODO.
|
| virtual Element & | Reduce (Element &a, const Element &b) const |
| | Reduces an element in the congruence class.
|
| virtual Element | ScalarMultiply (const Element &a, const Integer &e) const |
| | Performs a scalar multiplication.
|
| virtual Element | CascadeScalarMultiply (const Element &x, const Integer &e1, const Element &y, const Integer &e2) const |
| | TODO.
|
| virtual void | SimultaneousMultiply (Element *results, const Element &base, const Integer *exponents, unsigned int exponentsCount) const |
| | Multiplies a base to multiple exponents in a group.
|
Elliptic Curve over GF(2^n).
Definition at line 26 of file ec2n.h.