7#include <botan/bcrypt_pbkdf.h>
10#include <botan/internal/blowfish.h>
11#include <botan/internal/fmt.h>
12#include <botan/internal/loadstor.h>
13#include <botan/internal/timer.h>
22 return fmt(
"Bcrypt-PBKDF({})", m_iterations);
26 return "Bcrypt-PBKDF";
30 std::chrono::milliseconds msec,
32 std::chrono::milliseconds tune_time)
const {
33 Timer timer(
"Bcrypt_PBKDF");
35 const size_t blocks = (output_length + 32 - 1) / 32;
41 const size_t starting_iter = 2;
46 uint8_t output[32] = {0};
47 pwhash->derive_key(output,
sizeof(output),
"test", 4,
nullptr, 0);
54 const uint64_t measured_time = timer.
value() / (timer.
events() / blocks);
56 const uint64_t target_nsec = msec.count() *
static_cast<uint64_t
>(1000000);
58 const uint64_t desired_increase = target_nsec / measured_time;
60 if(desired_increase == 0) {
64 return this->
from_iterations(
static_cast<size_t>(desired_increase * starting_iter));
72 return std::make_unique<Bcrypt_PBKDF>(iter);
86 const size_t BCRYPT_PBKDF_OUTPUT = 32;
89 alignas(64)
static const uint8_t BCRYPT_PBKDF_MAGIC[BCRYPT_PBKDF_OUTPUT] = {
90 0x4F, 0x78, 0x79, 0x63, 0x68, 0x72, 0x6F, 0x6D, 0x61, 0x74, 0x69, 0x63, 0x42, 0x6C, 0x6F, 0x77,
91 0x66, 0x69, 0x73, 0x68, 0x53, 0x77, 0x61, 0x74, 0x44, 0x79, 0x6E, 0x61, 0x6D, 0x69, 0x74, 0x65};
93 const size_t BCRYPT_PBKDF_WORKFACTOR = 6;
94 const size_t BCRYPT_PBKDF_ROUNDS = 64;
97 pass_hash.data(), pass_hash.size(), salt_hash.data(), salt_hash.size(), BCRYPT_PBKDF_WORKFACTOR,
true);
99 copy_mem(tmp.data(), BCRYPT_PBKDF_MAGIC, BCRYPT_PBKDF_OUTPUT);
100 for(
size_t i = 0; i != BCRYPT_PBKDF_ROUNDS; ++i) {
110 for(
size_t i = 0; i != 32 / 4; ++i) {
112 store_be(w, &tmp[
sizeof(uint32_t) * i]);
115 xor_buf(out.data(), tmp.data(), BCRYPT_PBKDF_OUTPUT);
122 const char* password,
124 const uint8_t salt[],
125 size_t salt_len)
const {
127 if(output_len == 0) {
131 BOTAN_ARG_CHECK(output_len <= 10 * 1024 * 1024,
"Too much output for Bcrypt PBKDF");
133 const size_t BCRYPT_BLOCK_SIZE = 32;
134 const size_t blocks = (output_len + BCRYPT_BLOCK_SIZE - 1) / BCRYPT_BLOCK_SIZE;
137 const auto pass_hash = sha512->process(
reinterpret_cast<const uint8_t*
>(password), password_len);
145 for(
size_t block = 0; block != blocks; ++block) {
148 sha512->update(salt, salt_len);
149 sha512->update_be(
static_cast<uint32_t
>(block + 1));
150 sha512->final(salt_hash.data());
152 bcrypt_round(blowfish, pass_hash, salt_hash, out, tmp);
154 for(
size_t r = 1; r < m_iterations; ++r) {
157 sha512->final(salt_hash.data());
159 bcrypt_round(blowfish, pass_hash, salt_hash, out, tmp);
162 for(
size_t i = 0; i != BCRYPT_BLOCK_SIZE; ++i) {
163 const size_t dest = i * blocks + block;
164 if(dest < output_len) {
165 output[dest] = out[i];
#define BOTAN_ARG_CHECK(expr, msg)
std::unique_ptr< PasswordHash > from_params(size_t i, size_t, size_t) const override
std::unique_ptr< PasswordHash > default_params() const override
std::unique_ptr< PasswordHash > tune(size_t output_length, std::chrono::milliseconds msec, size_t max_memory, std::chrono::milliseconds tune_msec) const override
std::string name() const override
std::unique_ptr< PasswordHash > from_iterations(size_t iter) const override
void derive_key(uint8_t out[], size_t out_len, const char *password, size_t password_len, const uint8_t salt[], size_t salt_len) const override
Bcrypt_PBKDF(size_t iterations)
std::string to_string() const override
void encrypt(const uint8_t in[], uint8_t out[]) const
void salted_set_key(const uint8_t key[], size_t key_length, const uint8_t salt[], size_t salt_length, size_t workfactor, bool salt_first=false)
static std::unique_ptr< HashFunction > create_or_throw(std::string_view algo_spec, std::string_view provider="")
void run_until_elapsed(std::chrono::milliseconds msec, F f)
std::string fmt(std::string_view format, const T &... args)
constexpr auto load_le(ParamTs &&... params)
constexpr void xor_buf(ranges::contiguous_output_range< uint8_t > auto &&out, ranges::contiguous_range< uint8_t > auto &&in)
std::vector< T, secure_allocator< T > > secure_vector
constexpr void copy_mem(T *out, const T *in, size_t n)
constexpr auto store_be(ParamTs &&... params)
constexpr void clear_mem(T *ptr, size_t n)