Botan
2.1.0
Crypto and TLS for C++11
|
Functions | |
secure_vector< uint8_t > | decode (DataSource &source, std::string &label) |
secure_vector< uint8_t > | decode (const std::string &pem, std::string &label) |
secure_vector< uint8_t > | decode_check_label (DataSource &source, const std::string &label_want) |
secure_vector< uint8_t > | decode_check_label (const std::string &pem, const std::string &label_want) |
std::string | encode (const std::vector< uint8_t > &data, const std::string &label, size_t line_width=64) |
std::string | encode (const uint8_t der[], size_t length, const std::string &label, size_t width) |
std::string | encode (const secure_vector< uint8_t > &data, const std::string &label, size_t line_width=64) |
bool | matches (DataSource &source, const std::string &extra, size_t search_range) |
BOTAN_DLL secure_vector< uint8_t > Botan::PEM_Code::decode | ( | DataSource & | pem, |
std::string & | label | ||
) |
Decode PEM data
pem | a datasource containing PEM encoded data |
label | is set to the PEM label found for later inspection |
Definition at line 68 of file pem.cpp.
References Botan::base64_decode(), and Botan::DataSource::read_byte().
Referenced by decode(), Botan::BER_Decoder::decode_and_check(), decode_check_label(), Botan::BER_Decoder::decode_optional_string(), Botan::DL_Group::PEM_decode(), and Botan::RSA_PrivateKey::RSA_PrivateKey().
BOTAN_DLL secure_vector< uint8_t > Botan::PEM_Code::decode | ( | const std::string & | pem, |
std::string & | label | ||
) |
Decode PEM data
pem | a string containing PEM encoded data |
label | is set to the PEM label found for later inspection |
Definition at line 131 of file pem.cpp.
References decode().
BOTAN_DLL secure_vector< uint8_t > Botan::PEM_Code::decode_check_label | ( | DataSource & | pem, |
const std::string & | label | ||
) |
Decode PEM data
pem | a datasource containing PEM encoded data |
label | is what we expect the label to be |
Definition at line 54 of file pem.cpp.
References decode().
Referenced by decode_check_label(), Botan::CryptoBox::decrypt(), Botan::EC_Group::EC_Group(), Botan::X509::load_key(), Botan::PKCS10_Request::raw_public_key(), and Botan::TLS::Session::Session().
BOTAN_DLL secure_vector< uint8_t > Botan::PEM_Code::decode_check_label | ( | const std::string & | pem, |
const std::string & | label | ||
) |
Decode PEM data
pem | a string containing PEM encoded data |
label | is what we expect the label to be |
Definition at line 124 of file pem.cpp.
References decode_check_label().
|
inline |
Encode some binary data in PEM format
data | binary data to encode |
label | PEM label |
line_width | after this many characters, a new line is inserted |
Definition at line 35 of file pem.h.
References encode().
BOTAN_DLL std::string Botan::PEM_Code::encode | ( | const uint8_t | data[], |
size_t | data_len, | ||
const std::string & | label, | ||
size_t | line_width = 64 |
||
) |
Encode some binary data in PEM format
data | binary data to encode |
data_len | length of binary data in bytes |
label | PEM label put after BEGIN and END |
line_width | after this many characters, a new line is inserted |
Definition at line 43 of file pem.cpp.
References Botan::base64_encode().
Referenced by Botan::X509::create_cert_req(), encode(), Botan::DER_Encoder::encode_list(), Botan::DER_Encoder::encode_optional(), Botan::CryptoBox::encrypt(), Botan::X942_PRF::kdf(), Botan::X509_CA::make_cert(), Botan::X509::PEM_encode(), Botan::DL_Group::PEM_encode(), Botan::EC_Group::PEM_encode(), Botan::X509_Object::PEM_encode(), Botan::TLS::Session::PEM_encode(), Botan::PKCS8::PEM_encode(), Botan::PKCS8::PEM_encode_encrypted_pbkdf_iter(), Botan::PKCS8::PEM_encode_encrypted_pbkdf_msec(), and Botan::McEliece_PrivateKey::private_key_bits().
|
inline |
Encode some binary data in PEM format
data | binary data to encode |
label | PEM label put after BEGIN and END |
line_width | after this many characters, a new line is inserted |
Definition at line 48 of file pem.h.
References encode().
BOTAN_DLL bool Botan::PEM_Code::matches | ( | DataSource & | source, |
const std::string & | extra = "" , |
||
size_t | search_range = 4096 |
||
) |
Heuristic test for PEM data.
Definition at line 140 of file pem.cpp.
References Botan::DataSource::peek().
Referenced by Botan::X509::load_key().