Fabcoin Core
0.16.2
P2P Digital Currency
|
Elliptic Curve over GF(2^n) More...
#include <ec2n.h>
Public Types | |
typedef GF2NP | Field |
typedef Field::Element | FieldElement |
typedef EC2NPoint | Point |
Public Types inherited from AbstractGroup< EC2NPoint > | |
typedef EC2NPoint | Element |
Public Member Functions | |
virtual | ~EC2N () |
EC2N () | |
Construct an EC2N. More... | |
EC2N (const Field &field, const Field::Element &a, const Field::Element &b) | |
Construct an EC2N. More... | |
EC2N (BufferedTransformation &bt) | |
Construct an EC2N from BER encoded parameters. More... | |
void | DEREncode (BufferedTransformation &bt) const |
Encode the fields fieldID and curve of the sequence ECParameters. More... | |
bool | Equal (const Point &P, const Point &Q) const |
Compare two elements for equality. More... | |
const Point & | Identity () const |
Provides the Identity element. More... | |
const Point & | Inverse (const Point &P) const |
Inverts the element in the group. More... | |
bool | InversionIsFast () const |
Determine if inversion is fast. More... | |
const Point & | Add (const Point &P, const Point &Q) const |
Adds elements in the group. More... | |
const Point & | Double (const Point &P) const |
Doubles an element in the group. More... | |
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. More... | |
unsigned int | EncodedPointSize (bool compressed=false) const |
Determines encoded point size. More... | |
bool | DecodePoint (Point &P, BufferedTransformation &bt, size_t len) const |
Decodes an elliptic curve point. More... | |
bool | DecodePoint (Point &P, const byte *encodedPoint, size_t len) const |
Decodes an elliptic curve point. More... | |
void | EncodePoint (byte *encodedPoint, const Point &P, bool compressed) const |
Encodes an elliptic curve point. More... | |
void | EncodePoint (BufferedTransformation &bt, const Point &P, bool compressed) const |
Encodes an elliptic curve point. More... | |
Point | BERDecodePoint (BufferedTransformation &bt) const |
BER Decodes an elliptic curve point. More... | |
void | DEREncodePoint (BufferedTransformation &bt, const Point &P, bool compressed) const |
DER Encodes an elliptic curve point. More... | |
Integer | FieldSize () const |
const Field & | GetField () const |
const FieldElement & | GetA () const |
const FieldElement & | GetB () const |
bool | operator== (const EC2N &rhs) const |
Public Member Functions inherited from AbstractGroup< EC2NPoint > | |
virtual | ~AbstractGroup () |
virtual const Element & | Subtract (const Element &a, const Element &b) const |
Subtracts elements in the group. More... | |
virtual Element & | Accumulate (Element &a, const Element &b) const |
TODO. More... | |
virtual Element & | Reduce (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... | |
Public Member Functions inherited from EncodedPoint< EC2NPoint > | |
virtual | ~EncodedPoint () |
Private Attributes | |
clonable_ptr< Field > | m_field |
FieldElement | m_a |
FieldElement | m_b |
Point | m_R |
typedef GF2NP EC2N::Field |
typedef Field::Element EC2N::FieldElement |
typedef EC2NPoint EC2N::Point |
|
inline |
Construct an EC2N.
field | Field, GF2NP derived class |
a | Field::Element |
b | Field::Element |
EC2N::EC2N | ( | BufferedTransformation & | bt | ) |
Construct an EC2N from BER encoded parameters.
bt | BufferedTransformation derived object |
This constructor will decode and extract the the fields fieldID and curve of the sequence ECParameters
Definition at line 16 of file ec2n.cpp.
|
virtual |
Adds elements in the group.
a | first element |
b | second element |
a
and b
Implements AbstractGroup< EC2NPoint >.
Definition at line 196 of file ec2n.cpp.
|
virtual |
BER Decodes an elliptic curve point.
bt | source BufferedTransformation |
Implements EncodedPoint< EC2NPoint >.
Definition at line 125 of file ec2n.cpp.
|
virtual |
Decodes an elliptic curve point.
P | point which is decoded |
bt | source BufferedTransformation |
len | number of bytes to read from the BufferedTransformation |
Implements EncodedPoint< EC2NPoint >.
Definition at line 47 of file ec2n.cpp.
|
virtual |
Decodes an elliptic curve point.
P | point which is decoded |
encodedPoint | byte array with the encoded point |
len | the size of the array |
Implements EncodedPoint< EC2NPoint >.
Definition at line 41 of file ec2n.cpp.
void EC2N::DEREncode | ( | BufferedTransformation & | bt | ) | const |
Encode the fields fieldID and curve of the sequence ECParameters.
bt | BufferedTransformation derived object |
Definition at line 32 of file ec2n.cpp.
|
virtual |
DER Encodes an elliptic curve point.
bt | target BufferedTransformation |
P | point which is encoded |
compressed | flag indicating if the point is compressed |
Implements EncodedPoint< EC2NPoint >.
Definition at line 135 of file ec2n.cpp.
|
virtual |
Doubles an element in the group.
a | the element |
Reimplemented from AbstractGroup< EC2NPoint >.
Definition at line 218 of file ec2n.cpp.
|
inlinevirtual |
Determines encoded point size.
compressed | flag indicating if the point is compressed |
Implements EncodedPoint< EC2NPoint >.
Definition at line 67 of file ec2n.h.
Encodes an elliptic curve point.
P | point which is decoded |
encodedPoint | byte array for the encoded point |
compressed | flag indicating if the point is compressed |
encodedPoint
must be at least EncodedPointSize() in length
Implements EncodedPoint< EC2NPoint >.
Definition at line 118 of file ec2n.cpp.
|
virtual |
Encodes an elliptic curve point.
bt | target BufferedTransformation |
P | point which is encoded |
compressed | flag indicating if the point is compressed |
Implements EncodedPoint< EC2NPoint >.
Definition at line 100 of file ec2n.cpp.
Compare two elements for equality.
a | first element |
b | second element |
Equal() tests the elements for equality using a==b
Implements AbstractGroup< EC2NPoint >.
Definition at line 164 of file ec2n.cpp.
|
inline |
|
inline |
|
inline |
|
inline |
|
virtual |
Provides the Identity element.
Implements AbstractGroup< EC2NPoint >.
Definition at line 178 of file ec2n.cpp.
|
virtual |
Inverts the element in the group.
a | first element |
Implements AbstractGroup< EC2NPoint >.
|
inlinevirtual |
Determine if inversion is fast.
Reimplemented from AbstractGroup< EC2NPoint >.
Definition at line 55 of file ec2n.h.
|
inline |
bool EC2N::ValidateParameters | ( | RandomNumberGenerator & | rng, |
unsigned int | level = 3 |
||
) | const |
|
virtual |
Verifies points on elliptic curve.
P | point to verify |
Implements EncodedPoint< EC2NPoint >.
|
private |
|
private |
|
private |