A secured container for sensitive information (certificate, private key) More...
#include <ndn-cxx/security/safe-bag.hpp>
Public Member Functions | |
SafeBag () | |
Create a new empty SafeBag object. More... | |
SafeBag (const Block &wire) | |
Create a new SafeBag object from a TLV block. More... | |
SafeBag (const Data &certificate, span< const uint8_t > encryptedKey) | |
Create a new SafeBag object with the given certificate and private key. More... | |
const Data & | getCertificate () const |
Get the certificate data packet from safe bag. More... | |
span< const uint8_t > | getEncryptedKey () const |
Get the private key in PKCS #8 format from safe bag. More... | |
void | wireDecode (const Block &wire) |
Decode the input from wire format. More... | |
const Block & | wireEncode () const |
Encode to wire format. More... | |
template<encoding::Tag TAG> | |
size_t | wireEncode (EncodingImpl< TAG > &encoder) const |
Fast encoding or block size estimation. More... | |
A secured container for sensitive information (certificate, private key)
Definition at line 38 of file safe-bag.hpp.
|
default |
Create a new empty SafeBag object.
|
explicit |
Create a new SafeBag object from a TLV block.
Definition at line 37 of file safe-bag.cpp.
ndn::security::SafeBag::SafeBag | ( | const Data & | certificate, |
span< const uint8_t > | encryptedKey | ||
) |
Create a new SafeBag object with the given certificate and private key.
certificate | The certificate data packet |
encryptedKey | A buffer with the private key in PKCS #8 format |
Definition at line 42 of file safe-bag.cpp.
|
inline |
Get the certificate data packet from safe bag.
Definition at line 84 of file safe-bag.hpp.
|
inline |
Get the private key in PKCS #8 format from safe bag.
Definition at line 93 of file safe-bag.hpp.
void ndn::security::SafeBag::wireDecode | ( | const Block & | wire | ) |
Decode the input from wire format.
Definition at line 81 of file safe-bag.cpp.
const Block & ndn::security::SafeBag::wireEncode | ( | ) | const |
Encode to wire format.
Definition at line 68 of file safe-bag.cpp.
size_t ndn::security::SafeBag::wireEncode | ( | EncodingImpl< TAG > & | encoder | ) | const |
Fast encoding or block size estimation.
Definition at line 50 of file safe-bag.cpp.