libcryfs/src/config/CryConfigLoader.h

53 lines
1.7 KiB
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.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"
#include "crypto/kdf/Scrypt.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;
template<class SCryptSettings = SCryptDefaultSettings>
boost::optional<CryConfigFile> loadOrCreate(const boost::filesystem::path &filename);
private:
boost::optional<CryConfigFile> _loadConfig(const boost::filesystem::path &filename);
template<class SCryptSettings>
CryConfigFile _createConfig(const boost::filesystem::path &filename);
CryConfigCreator _creator;
std::function<std::string()> _askPassword;
DISALLOW_COPY_AND_ASSIGN(CryConfigLoader);
};
template<class SCryptSettings>
boost::optional<CryConfigFile> CryConfigLoader::loadOrCreate(const boost::filesystem::path &filename) {
if (boost::filesystem::exists(filename)) {
return _loadConfig(filename);
} else {
return _createConfig<SCryptSettings>(filename);
}
}
template<class SCryptSettings>
CryConfigFile CryConfigLoader::_createConfig(const boost::filesystem::path &filename) {
auto config = _creator.create();
//TODO Ask confirmation if using insecure password (<8 characters)
std::string password = _askPassword();
return CryConfigFile::create<SCryptSettings>(filename, std::move(config), password);
}
}
#endif