|
Security Scol plugin
|
Elliptic Curve Discrete Log (DL) private key. More...
#include <eccrypto.h>
Public Types | |
| typedef EC::Point | Element |
Public Types inherited from DL_PrivateKeyImpl< DL_GroupParameters_EC< EC > > | |
| typedef GP::Element | Element |
Public Types inherited from DL_PrivateKey< GP::Element > | |
| typedef GP::Element | Element |
Public Types inherited from DL_KeyImpl< PK, GP, O > | |
| 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}. | |
| void | Initialize (const EC &ec, const Element &G, const Integer &n, const Integer &x) |
| Initialize an EC Private Key using {EC,G,n,x}. | |
| void | Initialize (RandomNumberGenerator &rng, const DL_GroupParameters_EC< EC > ¶ms) |
| Create an EC private key. | |
| void | Initialize (RandomNumberGenerator &rng, const EC &ec, const Element &G, const Integer &n) |
| Create an EC private key. | |
| void | BERDecodePrivateKey (BufferedTransformation &bt, bool parametersPresent, size_t size) |
| void | DEREncodePrivateKey (BufferedTransformation &bt) const |
Public Member Functions inherited from DL_PrivateKeyImpl< DL_GroupParameters_EC< EC > > | |
| bool | Validate (RandomNumberGenerator &rng, unsigned int level) const |
| Check this object for errors. | |
| bool | GetVoidValue (const char *name, const std::type_info &valueType, void *pValue) const |
| Get a named value. | |
| void | AssignFrom (const NameValuePairs &source) |
| Assign values to this object. | |
| void | GenerateRandom (RandomNumberGenerator &rng, const NameValuePairs ¶ms) |
| Generate a random key or crypto parameters. | |
| bool | SupportsPrecomputation () const |
| Determines whether the object supports precomputation. | |
| void | Precompute (unsigned int precomputationStorage=16) |
| Perform precomputation. | |
| void | LoadPrecomputation (BufferedTransformation &storedPrecomputation) |
| Retrieve previously saved precomputation. | |
| void | SavePrecomputation (BufferedTransformation &storedPrecomputation) const |
| Save precomputation for later use. | |
| const DL_GroupParameters< Element > & | GetAbstractGroupParameters () const |
| Retrieves abstract group parameters. | |
| DL_GroupParameters< Element > & | AccessAbstractGroupParameters () |
| Retrieves abstract group parameters. | |
| const Integer & | GetPrivateExponent () const |
| Retrieves the private exponent. | |
| void | SetPrivateExponent (const Integer &x) |
| Sets the private exponent. | |
| void | BERDecodePrivateKey (BufferedTransformation &bt, bool, size_t) |
| Decode privateKey part of privateKeyInfo. | |
| void | DEREncodePrivateKey (BufferedTransformation &bt) const |
| Encode privateKey part of privateKeyInfo. | |
Public Member Functions inherited from DL_PrivateKey< GP::Element > | |
| void | MakePublicKey (DL_PublicKey< GP::Element > &pub) const |
| Initializes a public key from this key. | |
| bool | GetVoidValue (const char *name, const std::type_info &valueType, void *pValue) const |
| Get a named value. | |
| void | AssignFrom (const NameValuePairs &source) |
| Initialize or reinitialize this key. | |
Public Member Functions inherited from DL_KeyImpl< PK, GP, O > | |
| O | GetAlgorithmID () const |
| bool | BERDecodeAlgorithmParameters (BufferedTransformation &bt) |
| bool | DEREncodeAlgorithmParameters (BufferedTransformation &bt) const |
| const GP & | GetGroupParameters () const |
| GP & | AccessGroupParameters () |
Elliptic Curve Discrete Log (DL) private key.
| EC | elliptic curve field |
Definition at line 209 of file eccrypto.h.
| typedef EC::Point DL_PrivateKey_EC< EC >::Element |
Definition at line 212 of file eccrypto.h.
|
virtual |
Definition at line 259 of file eccrypto.h.
| void DL_PrivateKey_EC< EC >::BERDecodePrivateKey | ( | BufferedTransformation & | bt, |
| bool | parametersPresent, | ||
| size_t | size | ||
| ) |
Definition at line 718 of file eccrypto.cpp.
| void DL_PrivateKey_EC< EC >::DEREncodePrivateKey | ( | BufferedTransformation & | bt | ) | const |
Definition at line 757 of file eccrypto.cpp.
|
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 220 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 229 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 238 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 249 of file eccrypto.h.