Crypto++
8.6
Free C++ class library of cryptographic schemes
|
Elliptic Curve German DSA key for ISO/IEC 15946. More...
Public Types | |
typedef EC::Point | Element |
Public Member Functions | |
void | Initialize (const DL_GroupParameters_EC< EC > ¶ms, const Element &Q) |
Initialize an EC Public Key using {GP,Q}. More... | |
void | Initialize (const EC &ec, const Element &G, const Integer &n, const Element &Q) |
Initialize an EC Public Key using {EC,G,n,Q}. More... | |
virtual void | AssignFrom (const NameValuePairs &source) |
virtual void | SetPublicElement (const Element &y) |
void | BERDecodePublicKey (BufferedTransformation &bt, bool parametersPresent, size_t size) |
void | DEREncodePublicKey (BufferedTransformation &bt) const |
Elliptic Curve German DSA key for ISO/IEC 15946.
EC | elliptic curve field |
Definition at line 409 of file eccrypto.h.
|
inline |
Initialize an EC Public Key using {GP,Q}.
params | group parameters |
Q | the public point |
This Initialize() function overload initializes a public key from existing parameters.
Definition at line 513 of file eccrypto.h.
|
inline |
Initialize an EC Public Key using {EC,G,n,Q}.
ec | the elliptic curve |
G | the base point |
n | the order of the base point |
Q | the public point |
This Initialize() function overload initializes a public key from existing parameters.
Definition at line 522 of file eccrypto.h.