Some checks failed
Docker. / Ubuntu (push) Has been cancelled
User-agent updater. / User-agent (push) Failing after 15s
Lock Threads / lock (push) Failing after 10s
Waiting for answer. / waiting-for-answer (push) Failing after 22s
Close stale issues and PRs / stale (push) Successful in 13s
Needs user action. / needs-user-action (push) Failing after 8s
Can't reproduce. / cant-reproduce (push) Failing after 8s
59 lines
1.3 KiB
C++
59 lines
1.3 KiB
C++
// This file is part of Desktop App Toolkit,
|
|
// a set of libraries for developing nice desktop applications.
|
|
//
|
|
// For license and copyright information please follow this link:
|
|
// https://github.com/desktop-app/legal/blob/master/LEGAL
|
|
//
|
|
#pragma once
|
|
|
|
#include "base/bytes.h"
|
|
|
|
namespace Storage {
|
|
|
|
constexpr auto kSaltSize = size_type(64);
|
|
|
|
class CtrState {
|
|
public:
|
|
static constexpr auto kBlockSize = size_type(16);
|
|
static constexpr auto kKeySize = size_type(32);
|
|
static constexpr auto kIvSize = kBlockSize;
|
|
|
|
CtrState(bytes::const_span key, bytes::const_span iv);
|
|
|
|
void encrypt(bytes::span data, int64 offset);
|
|
void decrypt(bytes::span data, int64 offset);
|
|
|
|
private:
|
|
template <typename Method>
|
|
void process(bytes::span data, int64 offset, Method method);
|
|
|
|
bytes::array<kIvSize> incrementedIv(int64 blockIndex);
|
|
|
|
static constexpr auto EcountSize = kBlockSize;
|
|
|
|
bytes::array<kKeySize> _key;
|
|
bytes::array<kIvSize> _iv;
|
|
|
|
};
|
|
|
|
class EncryptionKey {
|
|
public:
|
|
static constexpr auto kSize = size_type(256);
|
|
static constexpr auto kSize_v2 = size_type(64);
|
|
|
|
EncryptionKey() = default;
|
|
explicit EncryptionKey(bytes::vector &&data);
|
|
|
|
bool empty() const;
|
|
explicit operator bool() const;
|
|
|
|
const bytes::vector &data() const;
|
|
CtrState prepareCtrState(bytes::const_span salt) const;
|
|
|
|
private:
|
|
bytes::vector _data;
|
|
|
|
};
|
|
|
|
} // namespace Storage
|