Remove unused secure_storage::EncryptedFile class.

This commit is contained in:
levlam 2021-08-04 05:09:24 +03:00
parent d985e3cc84
commit 126fe070dc

View File

@ -182,10 +182,6 @@ struct EncryptedValue {
BufferSlice data;
ValueHash hash;
};
struct EncryptedFile {
std::string path;
ValueHash hash;
};
Result<EncryptedValue> encrypt_value(const Secret &secret, Slice data);
Result<ValueHash> encrypt_file(const Secret &secret, std::string src, std::string dest);