Botan 3.0.0-alpha0
Crypto and TLS for C&
|
Functions | |
secure_vector< uint8_t > | decode (const std::string &pem, std::string &label) |
secure_vector< uint8_t > | decode (DataSource &source, std::string &label) |
secure_vector< uint8_t > | decode_check_label (const std::string &pem, const std::string &label_want) |
secure_vector< uint8_t > | decode_check_label (DataSource &source, const std::string &label_want) |
template<typename Alloc > | |
std::string | encode (const std::vector< uint8_t, Alloc > &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) |
bool | matches (DataSource &source, const std::string &extra, size_t search_range) |
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().
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 66 of file pem.cpp.
References b, Botan::base64_decode(), and Botan::DataSource::read_byte().
Referenced by Botan::BER_Decoder::decode(), decode(), Botan::BER_Decoder::decode_and_check(), decode_check_label(), Botan::BER_Decoder::decode_optional_string(), Botan::DL_Group::DL_Group(), Botan::DL_Group::DL_Group_from_PEM(), Botan::BER_Decoder::get_next_octet_string(), Botan::Kyber_PrivateKey::Kyber_PrivateKey(), Botan::X509_Object::load_data(), and Botan::RSA_PrivateKey::RSA_PrivateKey().
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().
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 52 of file pem.cpp.
References decode().
Referenced by decode_check_label(), Botan::CryptoBox::decrypt_bin(), Botan::EC_Group::EC_Group(), Botan::EC_Group::EC_Group_from_PEM(), Botan::X509::load_key(), and Botan::TLS::Session::Session().
std::string Botan::PEM_Code::encode | ( | const std::vector< uint8_t, Alloc > & | data, |
const std::string & | label, | ||
size_t | line_width = 64 |
||
) |
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 39 of file pem.h.
References encode().
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 41 of file pem.cpp.
References Botan::base64_encode().
Referenced by botan_privkey_rsa_get_privkey(), Botan::EC_Group::DER_encode(), encode(), Botan::DER_Encoder::encode(), Botan::DER_Encoder::encode_if(), Botan::DER_Encoder::encode_list(), Botan::DER_Encoder::encode_optional(), Botan::CryptoBox::encrypt(), Botan::X942_PRF::kdf(), Botan::X509_CA::make_cert(), Botan::EC_Group::PEM_encode(), Botan::TLS::Session::PEM_encode(), Botan::X509_Object::PEM_encode(), Botan::PKCS8::PEM_encode(), Botan::X509::PEM_encode(), Botan::DL_Group::PEM_encode(), Botan::PKCS8::PEM_encode_encrypted_pbkdf_iter(), Botan::PKCS8::PEM_encode_encrypted_pbkdf_msec(), and Botan::McEliece_PrivateKey::private_key_bits().
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::Certificate_Store_In_Memory::find_all_certs(), Botan::X509_Object::load_data(), and Botan::X509::load_key().