libcryfs/src/cryfs/config/CryConfigFile.h

35 lines
1.1 KiB
C
Raw Normal View History

#pragma once
#ifndef MESSMER_CRYFS_SRC_CONFIG_CRYCONFIGFILE_H
#define MESSMER_CRYFS_SRC_CONFIG_CRYCONFIGFILE_H
2015-10-19 02:46:47 +02:00
#include <boost/optional.hpp>
#include <boost/filesystem.hpp>
2015-10-19 02:46:47 +02:00
#include "CryConfig.h"
2016-02-11 16:39:42 +01:00
#include <cpp-utils/crypto/symmetric/ciphers.h>
#include "crypto/CryConfigEncryptorFactory.h"
2015-10-19 02:46:47 +02:00
namespace cryfs {
class CryConfigFile final {
public:
CryConfigFile(CryConfigFile &&rhs) = default;
2015-10-23 00:04:03 +02:00
~CryConfigFile();
2015-10-19 02:46:47 +02:00
static CryConfigFile create(const boost::filesystem::path &path, CryConfig config, const std::string &password, const cpputils::SCryptSettings &scryptSettings);
static boost::optional<CryConfigFile> load(const boost::filesystem::path &path, const std::string &password);
2015-10-19 02:46:47 +02:00
void save() const;
CryConfig *config();
private:
CryConfigFile(const boost::filesystem::path &path, CryConfig config, cpputils::unique_ref<CryConfigEncryptor> encryptor);
2015-10-19 02:46:47 +02:00
boost::filesystem::path _path;
CryConfig _config;
cpputils::unique_ref<CryConfigEncryptor> _encryptor;
2015-10-19 02:46:47 +02:00
DISALLOW_COPY_AND_ASSIGN(CryConfigFile);
};
}
#endif