diff options
author | Richard Weinberger <richard@nod.at> | 2018-10-18 16:37:11 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2018-11-01 12:41:54 +0100 |
commit | 922a6e998538a1ea57682d0d3373cb4d19e9dc02 (patch) | |
tree | 81479b0c6c753167bd86923dcdcb34307243b7fa /ubifs-utils/mkfs.ubifs/fscrypt.h | |
parent | c573dc0021310e1956da638ecf654d65043a42ca (diff) |
mkfs.ubifs: Fixup AES-XTS mode
In XTS mode we don't need ESSIV, just use the block number
as tweak.
Also apply EVP_EncryptFinal().
Signed-off-by: Richard Weinberger <richard@nod.at>
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'ubifs-utils/mkfs.ubifs/fscrypt.h')
-rw-r--r-- | ubifs-utils/mkfs.ubifs/fscrypt.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ubifs-utils/mkfs.ubifs/fscrypt.h b/ubifs-utils/mkfs.ubifs/fscrypt.h index e39d7e1..e3cfee5 100644 --- a/ubifs-utils/mkfs.ubifs/fscrypt.h +++ b/ubifs-utils/mkfs.ubifs/fscrypt.h @@ -93,6 +93,10 @@ struct fscrypt_symlink_data { #define FS_MAX_KEY_SIZE 64 #endif +#ifndef FS_IV_SIZE +#define FS_IV_SIZE 16 +#endif + unsigned char *calc_fscrypt_subkey(struct fscrypt_context *fctx); struct fscrypt_context *inherit_fscrypt_context(struct fscrypt_context *fctx); |