Bitlk: Move crypt key handling to crypto backend.

This commit is contained in:
Milan Broz
2019-11-07 11:54:44 +01:00
parent bc87140b5b
commit 79019b1ced
7 changed files with 99 additions and 27 deletions

View File

@@ -392,3 +392,11 @@ bool crypt_cipher_kernel_only(struct crypt_cipher *ctx)
{
return true;
}
int crypt_bitlk_decrypt_key(const void *key, size_t key_length,
const char *in, char *out, size_t length,
const char *iv, size_t iv_length,
const char *tag, size_t tag_length)
{
return -ENOTSUP;
}