8#include <botan/pkcs8.h>
10#include <botan/asn1_obj.h>
11#include <botan/assert.h>
12#include <botan/ber_dec.h>
13#include <botan/der_enc.h>
15#include <botan/pk_algs.h>
17#include <botan/internal/fmt.h>
18#include <botan/internal/scan_name.h>
20#if defined(BOTAN_HAS_PKCS5_PBES2)
21 #include <botan/internal/pbes2.h>
47 const std::function<std::string()>& get_passphrase,
57 key_data = PKCS8_extract(source, pbe_alg_id);
61 key_data.push_back(*b);
69 if(label ==
"PRIVATE KEY") {
71 }
else if(label ==
"ENCRYPTED PRIVATE KEY") {
73 key_data = PKCS8_extract(key_source, pbe_alg_id);
79 if(key_data.empty()) {
92#if defined(BOTAN_HAS_PKCS5_PBES2)
96 throw Decoding_Error(
"Private key is encrypted but PBES2 was disabled in build");
110 }
catch(std::exception& e) {
125#if defined(BOTAN_HAS_PKCS5_PBES2)
129std::pair<std::string, std::string> choose_pbe_params(std::string_view pbe_algo, std::string_view key_algo) {
130 if(pbe_algo.empty()) {
136 const bool nonstandard_pk = (key_algo ==
"McEliece" || key_algo ==
"XMSS");
139 #if defined(BOTAN_HAS_AEAD_SIV) && defined(BOTAN_HAS_SHA2_64)
140 return std::make_pair(
"AES-256/SIV",
"SHA-512");
141 #elif defined(BOTAN_HAS_AEAD_GCM) && defined(BOTAN_HAS_SHA2_64)
142 return std::make_pair(
"AES-256/GCM",
"SHA-512");
147 return std::make_pair(
"AES-256/CBC",
"SHA-256");
150 const SCAN_Name request(pbe_algo);
152 if(request.arg_count() != 2 || (request.algo_name() !=
"PBE-PKCS5v20" && request.algo_name() !=
"PBES2")) {
153 throw Invalid_Argument(
fmt(
"Unsupported PBE '{}'", pbe_algo));
156 return std::make_pair(request.arg(0), request.arg(1));
168 std::string_view pass,
169 std::chrono::milliseconds msec,
170 std::string_view pbe_algo) {
171#if defined(BOTAN_HAS_PKCS5_PBES2)
172 const auto pbe_params = choose_pbe_params(pbe_algo, key.
algo_name());
174 const std::pair<AlgorithmIdentifier, std::vector<uint8_t>> pbe_info =
177 std::vector<uint8_t> output;
184 throw Encoding_Error(
"PKCS8::BER_encode cannot encrypt because PBES2 was disabled in build");
193 std::string_view pass,
194 std::chrono::milliseconds msec,
195 std::string_view pbe_algo) {
208 std::string_view pass,
209 size_t pbkdf_iterations,
210 std::string_view cipher,
211 std::string_view pbkdf_hash) {
212#if defined(BOTAN_HAS_PKCS5_PBES2)
213 const std::pair<AlgorithmIdentifier, std::vector<uint8_t>> pbe_info =
217 cipher.empty() ?
"AES-256/CBC" : cipher,
218 pbkdf_hash.empty() ?
"SHA-256" : pbkdf_hash,
221 std::vector<uint8_t> output;
228 BOTAN_UNUSED(key, rng, pass, pbkdf_iterations, cipher, pbkdf_hash);
229 throw Encoding_Error(
"PKCS8::BER_encode_encrypted_pbkdf_iter cannot encrypt because PBES2 disabled in build");
238 std::string_view pass,
239 size_t pbkdf_iterations,
240 std::string_view cipher,
241 std::string_view pbkdf_hash) {
243 "ENCRYPTED PRIVATE KEY");
251 std::string_view pass,
252 std::chrono::milliseconds pbkdf_msec,
253 size_t* pbkdf_iterations,
254 std::string_view cipher,
255 std::string_view pbkdf_hash) {
256#if defined(BOTAN_HAS_PKCS5_PBES2)
257 const std::pair<AlgorithmIdentifier, std::vector<uint8_t>> pbe_info =
262 cipher.empty() ?
"AES-256/CBC" : cipher,
263 pbkdf_hash.empty() ?
"SHA-256" : pbkdf_hash,
266 std::vector<uint8_t> output;
275 BOTAN_UNUSED(key, rng, pass, pbkdf_msec, pbkdf_iterations, cipher, pbkdf_hash);
276 throw Encoding_Error(
"BER_encode_encrypted_pbkdf_msec cannot encrypt because PBES2 disabled in build");
285 std::string_view pass,
286 std::chrono::milliseconds pbkdf_msec,
287 size_t* pbkdf_iterations,
288 std::string_view cipher,
289 std::string_view pbkdf_hash) {
292 "ENCRYPTED PRIVATE KEY");
301 const std::function<std::string()>& get_pass,
307 if(alg_name.empty()) {
319std::unique_ptr<Private_Key>
load_key(
DataSource& source,
const std::function<std::string()>& get_pass) {
320 return load_key(source, get_pass,
true);
323std::unique_ptr<Private_Key>
load_key(std::span<const uint8_t> source,
324 const std::function<std::string()>& get_passphrase) {
326 return load_key(ds, get_passphrase);
329std::unique_ptr<Private_Key>
load_key(std::span<const uint8_t> source, std::string_view pass) {
334std::unique_ptr<Private_Key>
load_key(std::span<const uint8_t> source) {
344 source, [pass]() {
return std::string(pass); },
true);
351 auto fail_fn = []() -> std::string {
352 throw PKCS8_Exception(
"Internal error: Attempt to read password for unencrypted key");
355 return load_key(source, fail_fn,
false);
const std::vector< uint8_t > & parameters() const
virtual std::string algo_name() const =0
BER_Decoder & decode(bool &out)
BER_Decoder & verify_end()
BER_Decoder start_sequence()
BER_Decoder & decode_and_check(const T &expected, std::string_view error_msg)
DER_Encoder & start_sequence()
DER_Encoder & encode(bool b)
size_t read_byte(uint8_t &out)
std::string to_formatted_string() const
std::string human_name_or_empty() const
secure_vector< uint8_t > private_key_info() const
bool maybe_BER(DataSource &source)
std::string encode(const uint8_t der[], size_t length, std::string_view label, size_t width)
bool matches(DataSource &source, std::string_view extra, size_t search_range)
secure_vector< uint8_t > decode(DataSource &source, std::string &label)
std::vector< uint8_t > BER_encode(const Private_Key &key, RandomNumberGenerator &rng, std::string_view pass, std::chrono::milliseconds msec, std::string_view pbe_algo)
std::string PEM_encode_encrypted_pbkdf_iter(const Private_Key &key, RandomNumberGenerator &rng, std::string_view pass, size_t pbkdf_iterations, std::string_view cipher, std::string_view pbkdf_hash)
std::string PEM_encode(const Private_Key &key)
std::string PEM_encode_encrypted_pbkdf_msec(const Private_Key &key, RandomNumberGenerator &rng, std::string_view pass, std::chrono::milliseconds pbkdf_msec, size_t *pbkdf_iterations, std::string_view cipher, std::string_view pbkdf_hash)
std::vector< uint8_t > BER_encode_encrypted_pbkdf_iter(const Private_Key &key, RandomNumberGenerator &rng, std::string_view pass, size_t pbkdf_iterations, std::string_view cipher, std::string_view pbkdf_hash)
std::vector< uint8_t > BER_encode_encrypted_pbkdf_msec(const Private_Key &key, RandomNumberGenerator &rng, std::string_view pass, std::chrono::milliseconds pbkdf_msec, size_t *pbkdf_iterations, std::string_view cipher, std::string_view pbkdf_hash)
std::unique_ptr< Private_Key > load_key(DataSource &source, const std::function< std::string()> &get_pass)
std::string fmt(std::string_view format, const T &... args)
std::pair< AlgorithmIdentifier, std::vector< uint8_t > > pbes2_encrypt_iter(std::span< const uint8_t > key_bits, std::string_view passphrase, size_t pbkdf_iter, std::string_view cipher, std::string_view digest, RandomNumberGenerator &rng)
secure_vector< uint8_t > pbes2_decrypt(std::span< const uint8_t > key_bits, std::string_view passphrase, const std::vector< uint8_t > ¶ms)
std::pair< AlgorithmIdentifier, std::vector< uint8_t > > pbes2_encrypt_msec(std::span< const uint8_t > key_bits, std::string_view passphrase, std::chrono::milliseconds msec, size_t *out_iterations_if_nonnull, std::string_view cipher, std::string_view digest, RandomNumberGenerator &rng)
std::vector< T, secure_allocator< T > > secure_vector
std::unique_ptr< Private_Key > load_private_key(const AlgorithmIdentifier &alg_id, std::span< const uint8_t > key_bits)