2018-03-26 16:07:04 +02:00
|
|
|
//
|
2022-01-01 01:35:39 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2022
|
2018-03-26 16:07:04 +02:00
|
|
|
//
|
|
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
//
|
2018-03-27 15:11:15 +02:00
|
|
|
#pragma once
|
|
|
|
|
2018-03-26 16:07:04 +02:00
|
|
|
#include "td/utils/buffer.h"
|
2018-03-27 15:11:15 +02:00
|
|
|
#include "td/utils/common.h"
|
2018-03-26 16:07:04 +02:00
|
|
|
#include "td/utils/crypto.h"
|
2018-03-27 15:11:15 +02:00
|
|
|
#include "td/utils/Slice.h"
|
|
|
|
#include "td/utils/Status.h"
|
2018-12-19 22:18:53 +01:00
|
|
|
#include "td/utils/UInt.h"
|
2018-03-26 16:07:04 +02:00
|
|
|
|
2018-03-27 15:11:15 +02:00
|
|
|
namespace td {
|
2018-03-26 16:07:04 +02:00
|
|
|
// Types
|
|
|
|
// Password
|
2018-03-27 15:11:15 +02:00
|
|
|
// Secret - 32 bytes with sum % 255 == 239
|
2018-03-26 16:07:04 +02:00
|
|
|
// EncryptedSecret - encrypted secret
|
|
|
|
// ValueHash - 32 bytes, sha256 from value
|
|
|
|
//
|
|
|
|
// ValueFull = ValueText? ValueData? ValueFile* = [Value]
|
|
|
|
// Value = ValueText | ValueData | ValueFile
|
|
|
|
//
|
|
|
|
// ValueMeta = random_prefix, secret, hash
|
|
|
|
//
|
|
|
|
// Helpers
|
|
|
|
// calc_aes_cbc_state :: ValueSecret -> ValueHash -> AesCbcState
|
|
|
|
//
|
|
|
|
// Encryption.
|
|
|
|
// To encrypt data:
|
|
|
|
// RandomPrefix, ValueSecret, Value:
|
|
|
|
// calc_value_hash :: RandomPrefix -> Value -> ValueHash
|
|
|
|
// do_encrypt :: RandomPrefix -> Value -> AesCbcState -> EncryptedValue // async
|
|
|
|
// encrypt :: (ValueSecret, RandomPrefix, Value) -> (EncryptedValue, ValueHash)
|
|
|
|
//
|
|
|
|
// To decrypt data:
|
|
|
|
// ValueSecret, ValueHash, EncryptedValue
|
|
|
|
// do_decrypt :: EncryptedValue -> AesCbcState -> (RandomPrefix, Value, ValueHash) // async
|
|
|
|
// decrypt :: (ValueSecret, ValueHash, EncryptedValue) -> Value
|
|
|
|
//
|
|
|
|
// To encrypt FullValue:
|
|
|
|
// ValueSecret, [(RandomPrefix, Value)]
|
|
|
|
// (ValueSecret, [(RandomPrefix, Value)]) -> [(ValueSecret, RandomPrefix, Value)]
|
|
|
|
// [(ValueSecret, RandomPrefix, Value)] -> [(EncryptedValue, ValueHash)]
|
|
|
|
//
|
|
|
|
|
|
|
|
namespace secure_storage {
|
|
|
|
// Helpers
|
|
|
|
class ValueHash {
|
|
|
|
public:
|
2018-03-27 15:11:15 +02:00
|
|
|
explicit ValueHash(UInt256 hash) : hash_(hash) {
|
2018-03-26 16:07:04 +02:00
|
|
|
}
|
2018-03-27 15:11:15 +02:00
|
|
|
static Result<ValueHash> create(Slice data);
|
2018-03-26 16:07:04 +02:00
|
|
|
Slice as_slice() const {
|
2019-09-15 05:19:46 +02:00
|
|
|
return ::td::as_slice(hash_);
|
2018-03-26 16:07:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
UInt256 hash_;
|
|
|
|
};
|
|
|
|
|
|
|
|
class DataView {
|
|
|
|
public:
|
2018-08-28 00:08:51 +02:00
|
|
|
DataView() = default;
|
|
|
|
DataView(const DataView &) = delete;
|
|
|
|
DataView &operator=(const DataView &) = delete;
|
|
|
|
DataView(DataView &&) = delete;
|
|
|
|
DataView &operator=(DataView &&) = delete;
|
|
|
|
|
2018-03-27 15:11:15 +02:00
|
|
|
virtual int64 size() const = 0;
|
2018-09-13 02:12:40 +02:00
|
|
|
virtual Result<BufferSlice> pread(int64 offset, int64 size) const = 0;
|
2018-03-26 16:07:04 +02:00
|
|
|
virtual ~DataView() = default;
|
|
|
|
};
|
|
|
|
|
2021-07-04 04:58:54 +02:00
|
|
|
class BufferSliceDataView final : public DataView {
|
2018-03-26 16:07:04 +02:00
|
|
|
public:
|
2018-03-27 15:11:15 +02:00
|
|
|
explicit BufferSliceDataView(BufferSlice buffer_slice);
|
2021-07-03 22:51:36 +02:00
|
|
|
int64 size() const final;
|
|
|
|
Result<BufferSlice> pread(int64 offset, int64 size) const final;
|
2018-03-26 16:07:04 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
BufferSlice buffer_slice_;
|
|
|
|
};
|
|
|
|
|
2021-07-04 04:58:54 +02:00
|
|
|
class ConcatDataView final : public DataView {
|
2018-03-26 16:07:04 +02:00
|
|
|
public:
|
2018-09-13 02:12:40 +02:00
|
|
|
ConcatDataView(const DataView &left, const DataView &right);
|
2021-07-03 22:51:36 +02:00
|
|
|
int64 size() const final;
|
|
|
|
Result<BufferSlice> pread(int64 offset, int64 size) const final;
|
2018-03-26 16:07:04 +02:00
|
|
|
|
|
|
|
private:
|
2018-09-13 02:12:40 +02:00
|
|
|
const DataView &left_;
|
|
|
|
const DataView &right_;
|
2018-03-26 16:07:04 +02:00
|
|
|
};
|
|
|
|
|
2018-08-04 08:55:49 +02:00
|
|
|
AesCbcState calc_aes_cbc_state_pbkdf2(Slice secret, Slice salt);
|
|
|
|
AesCbcState calc_aes_cbc_state_sha512(Slice seed);
|
2018-09-13 02:12:40 +02:00
|
|
|
Result<ValueHash> calc_value_hash(const DataView &data_view);
|
2018-03-27 15:11:15 +02:00
|
|
|
ValueHash calc_value_hash(Slice data);
|
2018-03-26 16:07:04 +02:00
|
|
|
BufferSlice gen_random_prefix(int64 data_size);
|
|
|
|
|
|
|
|
class Password {
|
|
|
|
public:
|
2018-03-27 15:11:15 +02:00
|
|
|
explicit Password(std::string password);
|
2018-03-26 16:07:04 +02:00
|
|
|
Slice as_slice() const;
|
|
|
|
|
|
|
|
private:
|
|
|
|
std::string password_;
|
|
|
|
};
|
|
|
|
|
|
|
|
class EncryptedSecret;
|
|
|
|
|
2018-08-04 08:55:49 +02:00
|
|
|
enum class EnryptionAlgorithm : int32 { Sha512, Pbkdf2 };
|
|
|
|
|
2018-03-26 16:07:04 +02:00
|
|
|
class Secret {
|
|
|
|
public:
|
|
|
|
static Result<Secret> create(Slice secret);
|
|
|
|
static Secret create_new();
|
|
|
|
|
|
|
|
Slice as_slice() const;
|
2018-08-04 08:55:49 +02:00
|
|
|
EncryptedSecret encrypt(Slice key, Slice salt, EnryptionAlgorithm algorithm);
|
2018-03-26 16:07:04 +02:00
|
|
|
|
2018-03-27 15:11:15 +02:00
|
|
|
int64 get_hash() const;
|
|
|
|
Secret clone() const;
|
|
|
|
|
2018-04-03 19:49:07 +02:00
|
|
|
static constexpr size_t size() {
|
|
|
|
return sizeof(secret_.raw);
|
|
|
|
}
|
|
|
|
|
2018-03-26 16:07:04 +02:00
|
|
|
private:
|
2018-03-27 15:11:15 +02:00
|
|
|
Secret(UInt256 secret, int64 hash);
|
2018-03-26 16:07:04 +02:00
|
|
|
UInt256 secret_;
|
2018-03-27 15:11:15 +02:00
|
|
|
int64 hash_;
|
2018-03-26 16:07:04 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
class EncryptedSecret {
|
|
|
|
public:
|
|
|
|
static Result<EncryptedSecret> create(Slice encrypted_secret);
|
2018-08-04 08:55:49 +02:00
|
|
|
Result<Secret> decrypt(Slice key, Slice salt, EnryptionAlgorithm algorithm);
|
2018-03-26 16:07:04 +02:00
|
|
|
Slice as_slice() const;
|
|
|
|
|
|
|
|
private:
|
2018-03-27 15:11:15 +02:00
|
|
|
explicit EncryptedSecret(UInt256 encrypted_secret);
|
2018-03-26 16:07:04 +02:00
|
|
|
UInt256 encrypted_secret_;
|
|
|
|
};
|
|
|
|
|
|
|
|
// Decryption
|
|
|
|
class Decryptor {
|
|
|
|
public:
|
2018-03-27 15:11:15 +02:00
|
|
|
explicit Decryptor(AesCbcState aes_cbc_state);
|
2018-03-26 16:07:04 +02:00
|
|
|
Result<BufferSlice> append(BufferSlice data);
|
|
|
|
Result<ValueHash> finish();
|
|
|
|
|
|
|
|
private:
|
|
|
|
AesCbcState aes_cbc_state_;
|
|
|
|
Sha256State sha256_state_;
|
|
|
|
bool skipped_prefix_{false};
|
|
|
|
size_t to_skip_{0};
|
|
|
|
};
|
|
|
|
|
|
|
|
// Encryption
|
2021-07-04 04:58:54 +02:00
|
|
|
class Encryptor final : public DataView {
|
2018-03-26 16:07:04 +02:00
|
|
|
public:
|
2018-09-13 02:12:40 +02:00
|
|
|
Encryptor(AesCbcState aes_cbc_state, const DataView &data_view);
|
2021-07-03 22:51:36 +02:00
|
|
|
int64 size() const final;
|
|
|
|
Result<BufferSlice> pread(int64 offset, int64 size) const final;
|
2018-03-26 16:07:04 +02:00
|
|
|
|
|
|
|
private:
|
2018-09-13 02:12:40 +02:00
|
|
|
mutable AesCbcState aes_cbc_state_;
|
|
|
|
mutable int64 current_offset_{0};
|
|
|
|
const DataView &data_view_;
|
2018-03-26 16:07:04 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
// Main functions
|
|
|
|
|
|
|
|
// decrypt :: (ValueSecret, ValueHash, EncryptedValue) -> Value
|
|
|
|
// encrypt :: (ValueSecret, RandomPrefix, Value) -> (EncryptedValue, ValueHash)
|
|
|
|
|
|
|
|
struct EncryptedValue {
|
|
|
|
BufferSlice data;
|
|
|
|
ValueHash hash;
|
|
|
|
};
|
|
|
|
|
|
|
|
Result<EncryptedValue> encrypt_value(const Secret &secret, Slice data);
|
|
|
|
|
|
|
|
Result<BufferSlice> decrypt_value(const Secret &secret, const ValueHash &hash, Slice data);
|
2021-10-19 17:11:16 +02:00
|
|
|
|
|
|
|
Result<ValueHash> encrypt_file(const Secret &secret, const string &src, const string &dest);
|
|
|
|
|
|
|
|
Status decrypt_file(const Secret &secret, const ValueHash &hash, const string &src, const string &dest);
|
2018-03-26 16:07:04 +02:00
|
|
|
|
|
|
|
} // namespace secure_storage
|
|
|
|
} // namespace td
|