WIP Add AES-XTS client encryption support

This commit is contained in:
Vitaliy Filippov
2026-02-22 02:48:34 +03:00
parent 8c2f0b2c93
commit 6467ebb806
15 changed files with 594 additions and 17 deletions
+4
View File
@@ -23,6 +23,10 @@ osd_op_t::~osd_op_t()
// So we don't reuse it, but free it every time
free(buf);
}
if (enc_buf)
{
free(enc_buf);
}
}
bool osd_op_t::is_recovery_related()