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>
48 const std::function<std::string()>& get_passphrase,
58 key_data = PKCS8_extract(source, pbe_alg_id);
62 key_data.push_back(*b);
70 if(label ==
"PRIVATE KEY") {
72 }
else if(label ==
"ENCRYPTED PRIVATE KEY") {
74 key_data = PKCS8_extract(key_source, pbe_alg_id);
80 if(key_data.empty()) {
93#if defined(BOTAN_HAS_PKCS5_PBES2)
97 throw Decoding_Error(
"Private key is encrypted but PBES2 was disabled in build");
111 }
catch(std::exception& e) {
126#if defined(BOTAN_HAS_PKCS5_PBES2)
130std::pair<std::string, std::string> choose_pbe_params(std::string_view pbe_algo, std::string_view key_algo) {
131 if(pbe_algo.empty()) {
137 const bool nonstandard_pk = (key_algo ==
"McEliece" || key_algo ==
"XMSS");
140 #if defined(BOTAN_HAS_AEAD_SIV) && defined(BOTAN_HAS_SHA2_64)
141 return std::make_pair(
"AES-256/SIV",
"SHA-512");
142 #elif defined(BOTAN_HAS_AEAD_GCM) && defined(BOTAN_HAS_SHA2_64)
143 return std::make_pair(
"AES-256/GCM",
"SHA-512");
148 return std::make_pair(
"AES-256/CBC",
"SHA-256");
151 const SCAN_Name request(pbe_algo);
153 if(request.arg_count() != 2 || (request.algo_name() !=
"PBE-PKCS5v20" && request.algo_name() !=
"PBES2")) {
154 throw Invalid_Argument(
fmt(
"Unsupported PBE '{}'", pbe_algo));
157 return std::make_pair(request.arg(0), request.arg(1));
169 std::string_view pass,
170 std::chrono::milliseconds msec,
171 std::string_view pbe_algo) {
172#if defined(BOTAN_HAS_PKCS5_PBES2)
173 const auto pbe_params = choose_pbe_params(pbe_algo, key.
algo_name());
175 const std::pair<AlgorithmIdentifier, std::vector<uint8_t>> pbe_info =
178 std::vector<uint8_t> output;
185 throw Encoding_Error(
"PKCS8::BER_encode cannot encrypt because PBES2 was disabled in build");
194 std::string_view pass,
195 std::chrono::milliseconds msec,
196 std::string_view pbe_algo) {
209 std::string_view pass,
210 size_t pbkdf_iterations,
211 std::string_view cipher,
212 std::string_view pbkdf_hash) {
213#if defined(BOTAN_HAS_PKCS5_PBES2)
214 const std::pair<AlgorithmIdentifier, std::vector<uint8_t>> pbe_info =
218 cipher.empty() ?
"AES-256/CBC" : cipher,
219 pbkdf_hash.empty() ?
"SHA-256" : pbkdf_hash,
222 std::vector<uint8_t> output;
229 BOTAN_UNUSED(key, rng, pass, pbkdf_iterations, cipher, pbkdf_hash);
230 throw Encoding_Error(
"PKCS8::BER_encode_encrypted_pbkdf_iter cannot encrypt because PBES2 disabled in build");
239 std::string_view pass,
240 size_t pbkdf_iterations,
241 std::string_view cipher,
242 std::string_view pbkdf_hash) {
244 "ENCRYPTED PRIVATE KEY");
252 std::string_view pass,
253 std::chrono::milliseconds pbkdf_msec,
254 size_t* pbkdf_iterations,
255 std::string_view cipher,
256 std::string_view pbkdf_hash) {
257#if defined(BOTAN_HAS_PKCS5_PBES2)
258 const std::pair<AlgorithmIdentifier, std::vector<uint8_t>> pbe_info =
263 cipher.empty() ?
"AES-256/CBC" : cipher,
264 pbkdf_hash.empty() ?
"SHA-256" : pbkdf_hash,
267 std::vector<uint8_t> output;
276 BOTAN_UNUSED(key, rng, pass, pbkdf_msec, pbkdf_iterations, cipher, pbkdf_hash);
277 throw Encoding_Error(
"BER_encode_encrypted_pbkdf_msec cannot encrypt because PBES2 disabled in build");
286 std::string_view pass,
287 std::chrono::milliseconds pbkdf_msec,
288 size_t* pbkdf_iterations,
289 std::string_view cipher,
290 std::string_view pbkdf_hash) {
293 "ENCRYPTED PRIVATE KEY");
302 const std::function<std::string()>& get_pass,
310 throw PKCS8_Exception(
fmt(
"Unknown algorithm OID {}", alg_id.
oid()));
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::optional< std::string > registered_name() 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)