Crypto++
8.9
Free C++ class library of cryptographic schemes
|
Elliptic Curve German DSA key for ISO/IEC 15946. More...
Public Types | |
typedef EC::Point | Element |
![]() | |
typedef GP::Element | Element |
![]() | |
typedef GP::Element | Element |
![]() | |
typedef GP | GroupParameters |
Public Member Functions | |
void | Initialize (const DL_GroupParameters_EC< EC > ¶ms, const Integer &x) |
Initialize an EC Private Key using {GP,x}. More... | |
void | Initialize (const EC &ec, const Element &G, const Integer &n, const Integer &x) |
Initialize an EC Private Key using {EC,G,n,x}. More... | |
void | Initialize (RandomNumberGenerator &rng, const DL_GroupParameters_EC< EC > ¶ms) |
Create an EC private key. More... | |
void | Initialize (RandomNumberGenerator &rng, const EC &ec, const Element &G, const Integer &n) |
Create an EC private key. More... | |
virtual void | MakePublicKey (DL_PublicKey_ECGDSA< EC > &pub) const |
virtual bool | GetVoidValue (const char *name, const std::type_info &valueType, void *pValue) const |
virtual void | AssignFrom (const NameValuePairs &source) |
void | BERDecodePrivateKey (BufferedTransformation &bt, bool parametersPresent, size_t size) |
void | DEREncodePrivateKey (BufferedTransformation &bt) const |
![]() | |
bool | Validate (RandomNumberGenerator &rng, unsigned int level) const |
Check this object for errors. More... | |
bool | GetVoidValue (const char *name, const std::type_info &valueType, void *pValue) const |
Get a named value. More... | |
void | AssignFrom (const NameValuePairs &source) |
Assign values to this object. More... | |
void | GenerateRandom (RandomNumberGenerator &rng, const NameValuePairs ¶ms) |
Generate a random key or crypto parameters. More... | |
bool | SupportsPrecomputation () const |
Determines whether the object supports precomputation. More... | |
void | Precompute (unsigned int precomputationStorage=16) |
Perform precomputation. More... | |
void | LoadPrecomputation (BufferedTransformation &storedPrecomputation) |
Retrieve previously saved precomputation. More... | |
void | SavePrecomputation (BufferedTransformation &storedPrecomputation) const |
Save precomputation for later use. More... | |
const DL_GroupParameters< Element > & | GetAbstractGroupParameters () const |
Retrieves abstract group parameters. More... | |
DL_GroupParameters< Element > & | AccessAbstractGroupParameters () |
Retrieves abstract group parameters. More... | |
const Integer & | GetPrivateExponent () const |
Retrieves the private exponent. More... | |
void | SetPrivateExponent (const Integer &x) |
Sets the private exponent. More... | |
void | BERDecodePrivateKey (BufferedTransformation &bt, bool, size_t) |
Decode privateKey part of privateKeyInfo. More... | |
void | DEREncodePrivateKey (BufferedTransformation &bt) const |
Encode privateKey part of privateKeyInfo. More... | |
![]() | |
void | MakePublicKey (DL_PublicKey< GP::Element > &pub) const |
Initializes a public key from this key. More... | |
bool | GetVoidValue (const char *name, const std::type_info &valueType, void *pValue) const |
Get a named value. More... | |
void | AssignFrom (const NameValuePairs &source) |
Initialize or reinitialize this key. More... | |
![]() | |
O | GetAlgorithmID () const |
bool | BERDecodeAlgorithmParameters (BufferedTransformation &bt) |
bool | DEREncodeAlgorithmParameters (BufferedTransformation &bt) const |
const GP & | GetGroupParameters () const |
GP & | AccessGroupParameters () |
Elliptic Curve German DSA key for ISO/IEC 15946.
EC | elliptic curve field |
Definition at line 418 of file eccrypto.h.
|
inline |
Initialize an EC Private Key using {GP,x}.
params | group parameters |
x | the private exponent |
This Initialize() function overload initializes a private key from existing parameters.
Definition at line 429 of file eccrypto.h.
|
inline |
Initialize an EC Private Key using {EC,G,n,x}.
ec | the elliptic curve |
G | the base point |
n | the order of the base point |
x | the private exponent |
This Initialize() function overload initializes a private key from existing parameters.
Definition at line 442 of file eccrypto.h.
|
inline |
Create an EC private key.
rng | a RandomNumberGenerator derived class |
params | the EC group parameters |
This function overload of Initialize() creates a new private key because it takes a RandomNumberGenerator() as a parameter. If you have an existing keypair, then use one of the other Initialize() overloads.
Definition at line 455 of file eccrypto.h.
|
inline |
Create an EC private key.
rng | a RandomNumberGenerator derived class |
ec | the elliptic curve |
G | the base point |
n | the order of the base point |
This function overload of Initialize() creates a new private key because it takes a RandomNumberGenerator() as a parameter. If you have an existing keypair, then use one of the other Initialize() overloads.
Definition at line 466 of file eccrypto.h.