Fabcoin Core
0.16.2
P2P Digital Currency
|
Interface for asymmetric algorithms. More...
#include <cryptlib.h>
Public Member Functions | |
virtual | ~AsymmetricAlgorithm () |
virtual CryptoMaterial & | AccessMaterial ()=0 |
Retrieves a reference to CryptoMaterial. More... | |
virtual const CryptoMaterial & | GetMaterial () const =0 |
Retrieves a reference to CryptoMaterial. More... | |
void | BERDecode (BufferedTransformation &bt) |
Loads this object from a BufferedTransformation. More... | |
void | DEREncode (BufferedTransformation &bt) const |
Saves this object to a BufferedTransformation. More... | |
Public Member Functions inherited from Algorithm | |
virtual | ~Algorithm () |
Algorithm (bool checkSelfTestStatus=true) | |
Interface for all crypto algorithms. More... | |
virtual std::string | AlgorithmName () const |
Provides the name of this algorithm. More... | |
Public Member Functions inherited from Clonable | |
virtual | ~Clonable () |
virtual Clonable * | Clone () const |
Copies this object. More... | |
Interface for asymmetric algorithms.
Definition at line 2196 of file cryptlib.h.
|
inlinevirtual |
Definition at line 2199 of file cryptlib.h.
|
pure virtual |
Retrieves a reference to CryptoMaterial.
Implemented in KeyAgreementAlgorithm, PrivateKeyAlgorithm, and PublicKeyAlgorithm.
|
inline |
Loads this object from a BufferedTransformation.
bt | a BufferedTransformation object |
AccessMaterial().Load(bt)
Definition at line 2212 of file cryptlib.h.
|
inline |
Saves this object to a BufferedTransformation.
bt | a BufferedTransformation object |
Definition at line 2218 of file cryptlib.h.
|
pure virtual |
Retrieves a reference to CryptoMaterial.
Implemented in KeyAgreementAlgorithm, PrivateKeyAlgorithm, and PublicKeyAlgorithm.