PcapPlusPlus
Next
|
Represents a private key in PKCS#8 format This class provides methods to decode and access the components of the private key and its data. More...
#include <CryptoKeyDecoder.h>
Classes | |
class | ECPrivateKeyData |
Contains EC private key data extracted from PKCS#8 format This class provides access to the components of an EC private key that was extracted from a PKCS#8 structure. More... | |
class | Ed25519PrivateKeyData |
Contains Ed25519 private key data extracted from PKCS#8 format This class provides access to the components of an Ed25519 private key that was extracted from a PKCS#8 structure. More... | |
class | PrivateKeyData |
Base class for private key data in PKCS#8 format This class serves as a base for different types of private key data that can be contained within a PKCS#8 structure. More... | |
class | RSAPrivateKeyData |
Contains RSA private key data extracted from PKCS#8 format This class provides access to the components of an RSA private key that was extracted from a PKCS#8 structure. More... | |
Public Member Functions | |
uint8_t | getVersion () const |
CryptographicKeyAlgorithm | getPrivateKeyAlgorithm () const |
std::unique_ptr< PrivateKeyData > | getPrivateKey () const |
Gets the private key data. More... | |
template<typename PrivateKeyDataType > | |
std::unique_ptr< PrivateKeyDataType > | getPrivateKeyAs () const |
Gets the private key data cast to a requested type. More... | |
![]() | |
std::vector< uint8_t > | toDER () const |
std::string | toPEM () const |
Additional Inherited Members | |
![]() | |
static std::unique_ptr< PKCS8PrivateKey > | fromDER (uint8_t *derData, size_t derDataLen, bool ownDerData=false) |
static std::unique_ptr< PKCS8PrivateKey > | fromDER (const std::string &derData) |
static std::unique_ptr< PKCS8PrivateKey > | fromDERFile (const std::string &derFileName) |
static std::unique_ptr< PKCS8PrivateKey > | fromPEM (const std::string &pemData) |
static std::unique_ptr< PKCS8PrivateKey > | fromPEMFile (const std::string &pemFileName) |
Represents a private key in PKCS#8 format This class provides methods to decode and access the components of the private key and its data.
std::unique_ptr<PrivateKeyData> pcpp::PKCS8PrivateKey::getPrivateKey | ( | ) | const |
Gets the private key data.
CryptographicKeyAlgorithm pcpp::PKCS8PrivateKey::getPrivateKeyAlgorithm | ( | ) | const |
|
inline |
Gets the private key data cast to a requested type.
uint8_t pcpp::PKCS8PrivateKey::getVersion | ( | ) | const |