libcryfs/src/config/CryConfigLoader.h

33 lines
943 B
C
Raw Normal View History

#pragma once
2015-10-15 13:06:51 +02:00
#ifndef MESSMER_CRYFS_SRC_CONFIG_CRYCONFIGLOADER_H_
#define MESSMER_CRYFS_SRC_CONFIG_CRYCONFIGLOADER_H_
2015-06-21 17:44:45 +02:00
#include <messmer/cpp-utils/pointer/unique_ref.h>
#include <boost/filesystem/path.hpp>
2015-10-19 02:46:47 +02:00
#include "CryConfigFile.h"
2015-09-01 00:25:14 +02:00
#include "CryCipher.h"
2015-10-19 02:46:47 +02:00
#include "CryConfigCreator.h"
namespace cryfs {
class CryConfigLoader {
public:
CryConfigLoader(cpputils::unique_ref<cpputils::Console> console, cpputils::RandomGenerator &keyGenerator, std::function<std::string()> askPassword);
CryConfigLoader(CryConfigLoader &&rhs) = default;
boost::optional<CryConfigFile> loadOrCreate(const boost::filesystem::path &filename);
private:
boost::optional<CryConfigFile> _loadConfig(const boost::filesystem::path &filename);
CryConfigFile _createConfig(const boost::filesystem::path &filename);
CryConfigCreator _creator;
std::function<std::string()> _askPassword;
DISALLOW_COPY_AND_ASSIGN(CryConfigLoader);
};
}
#endif