TODOs
This commit is contained in:
parent
bb507ce241
commit
d8ed751039
@ -12,7 +12,7 @@ namespace cryfs {
|
|||||||
class InnerEncryptor {
|
class InnerEncryptor {
|
||||||
public:
|
public:
|
||||||
virtual cpputils::Data encrypt(const cpputils::Data &plaintext) const = 0;
|
virtual cpputils::Data encrypt(const cpputils::Data &plaintext) const = 0;
|
||||||
virtual boost::optional <cpputils::Data> decrypt(const cpputils::Data &plaintext) const = 0;
|
virtual boost::optional<cpputils::Data> decrypt(const cpputils::Data &plaintext) const = 0;
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
static void _checkHeader(cpputils::Deserializer *deserializer);
|
static void _checkHeader(cpputils::Deserializer *deserializer);
|
||||||
|
@ -44,6 +44,7 @@ using boost::none;
|
|||||||
//TODO Did deadlock in bonnie++ second run (in the create files sequentially) - maybe also in a later run or different step?
|
//TODO Did deadlock in bonnie++ second run (in the create files sequentially) - maybe also in a later run or different step?
|
||||||
//TODO Improve error message when root blob wasn't found.
|
//TODO Improve error message when root blob wasn't found.
|
||||||
//TODO Replace ASSERTs with other error handling when it is not a programming error but an environment influence (e.g. a block is missing)
|
//TODO Replace ASSERTs with other error handling when it is not a programming error but an environment influence (e.g. a block is missing)
|
||||||
|
//TODO When creating a new filesystem, we need 2x kill to kill the process (probably because we access random values before daemonizing)
|
||||||
|
|
||||||
void showVersion() {
|
void showVersion() {
|
||||||
cout << "CryFS Version " << version::VERSION_STRING << endl;
|
cout << "CryFS Version " << version::VERSION_STRING << endl;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user