8#include <botan/bcrypt.h>
10#include <botan/base64.h>
11#include <botan/mem_ops.h>
13#include <botan/internal/blowfish.h>
14#include <botan/internal/ct_utils.h>
15#include <botan/internal/fmt.h>
16#include <botan/internal/mem_utils.h>
17#include <botan/internal/parsing.h>
24uint8_t base64_to_bcrypt_encoding(uint8_t c) {
38 ret = is_ab.select(c -
'a' +
'Y', ret);
39 ret = is_cz.select(c - 2, ret);
40 ret = is_CZ.select(c - 2, ret);
41 ret = is_01.select(c -
'0' +
'y', ret);
42 ret = is_29.select(c -
'2' +
'0', ret);
43 ret = is_A.select(
'.', ret);
44 ret = is_B.select(
'/', ret);
45 ret = is_plus.select(
'8', ret);
46 ret = is_slash.select(
'9', ret);
51uint8_t bcrypt_encoding_to_base64(uint8_t c) {
65 ret = is_ax.select(c -
'a' +
'c', ret);
66 ret = is_yz.select(c -
'y' +
'0', ret);
67 ret = is_AX.select(c -
'A' +
'C', ret);
68 ret = is_YZ.select(c -
'Y' +
'a', ret);
69 ret = is_07.select(c -
'0' +
'2', ret);
70 ret = is_8.select(
'+', ret);
71 ret = is_9.select(
'/', ret);
72 ret = is_dot.select(
'A', ret);
73 ret = is_slash.select(
'B', ret);
78std::string bcrypt_base64_encode(std::span<const uint8_t> input) {
81 while(!b64.empty() && b64.back() ==
'=') {
86 c =
static_cast<char>(base64_to_bcrypt_encoding(
static_cast<uint8_t
>(c)));
92std::vector<uint8_t> bcrypt_base64_decode(std::string_view input) {
93 std::string translated;
94 for(
const char c : input) {
95 translated.push_back(bcrypt_encoding_to_base64(
static_cast<uint8_t
>(c)));
101std::string make_bcrypt(std::string_view pass, std::span<const uint8_t> salt, uint16_t work_factor,
char version) {
108 BOTAN_ARG_CHECK(work_factor >= 4 && work_factor <= 18,
"Invalid bcrypt work factor");
110 alignas(64)
static const uint8_t BCRYPT_MAGIC[8 * 3] = {0x4F, 0x72, 0x70, 0x68, 0x65, 0x61, 0x6E, 0x42,
111 0x65, 0x68, 0x6F, 0x6C, 0x64, 0x65, 0x72, 0x53,
112 0x63, 0x72, 0x79, 0x44, 0x6F, 0x75, 0x62, 0x74};
121 blowfish.salted_set_key(pass_w_null.data(), pass_w_null.size(), salt.data(), salt.size(), work_factor);
123 std::vector<uint8_t> ctext(BCRYPT_MAGIC, BCRYPT_MAGIC + 8 * 3);
125 for(
size_t i = 0; i != 64; ++i) {
126 blowfish.encrypt_n(ctext.data(), ctext.data(), 3);
129 std::string salt_b64 = bcrypt_base64_encode(salt);
131 std::string work_factor_str = std::to_string(work_factor);
132 if(work_factor_str.length() == 1) {
133 work_factor_str =
"0" + work_factor_str;
136 return fmt(
"$2{}${}${}{}",
139 salt_b64.substr(0, 22),
140 bcrypt_base64_encode(std::span{ctext}.first(ctext.size() - 1)));
151 if(version !=
'a' && version !=
'b' && version !=
'y') {
152 throw Invalid_Argument(
"Unknown bcrypt version '" + std::string(1, version) +
"'");
155 std::vector<uint8_t> salt;
157 return make_bcrypt(pass, salt, work_factor, version);
161 if(hash.size() != 60 || hash[0] !=
'$' || hash[1] !=
'2' || hash[3] !=
'$' || hash[6] !=
'$') {
165 const char bcrypt_version = hash[2];
167 if(bcrypt_version !=
'a' && bcrypt_version !=
'b' && bcrypt_version !=
'y') {
171 const uint16_t workfactor =
to_uint16(hash.substr(4, 2));
173 const std::vector<uint8_t> salt = bcrypt_base64_decode(hash.substr(7, 22));
174 if(salt.size() != 16) {
178 const std::string compare = make_bcrypt(pass, salt, workfactor, bcrypt_version);
#define BOTAN_ARG_CHECK(expr, msg)
static constexpr Mask< T > is_within_range(T v, T l, T u)
static constexpr Mask< T > is_equal(T x, T y)
void random_vec(std::span< uint8_t > v)
constexpr CT::Mask< T > is_equal(const T x[], const T y[], size_t len)
uint16_t to_uint16(std::string_view str)
std::span< const uint8_t > as_span_of_bytes(const char *s, size_t len)
constexpr void copy_mem(T *out, const T *in, size_t n)
std::string fmt(std::string_view format, const T &... args)
std::string generate_bcrypt(std::string_view pass, RandomNumberGenerator &rng, uint16_t work_factor, char version)
size_t base64_encode(char out[], const uint8_t in[], size_t input_length, size_t &input_consumed, bool final_inputs)
size_t base64_decode(uint8_t out[], const char in[], size_t input_length, size_t &input_consumed, bool final_inputs, bool ignore_ws)
std::vector< T > unlock(const secure_vector< T > &in)
std::vector< T, secure_allocator< T > > secure_vector
bool check_bcrypt(std::string_view pass, std::string_view hash)