Home
last modified time | relevance | path

Searched refs:iv_bytes (Results 1 – 2 of 2) sorted by relevance

/linux-5.19.10/fs/ecryptfs/
Dcrypto.c119 ecryptfs_dump_hex(crypt_stat->root_iv, crypt_stat->iv_bytes); in ecryptfs_derive_iv()
125 memcpy(src, crypt_stat->root_iv, crypt_stat->iv_bytes); in ecryptfs_derive_iv()
126 memset((src + crypt_stat->iv_bytes), 0, 16); in ecryptfs_derive_iv()
127 snprintf((src + crypt_stat->iv_bytes), 16, "%lld", offset); in ecryptfs_derive_iv()
130 ecryptfs_dump_hex(src, (crypt_stat->iv_bytes + 16)); in ecryptfs_derive_iv()
133 (crypt_stat->iv_bytes + 16)); in ecryptfs_derive_iv()
139 memcpy(iv, dst, crypt_stat->iv_bytes); in ecryptfs_derive_iv()
142 ecryptfs_dump_hex(iv, crypt_stat->iv_bytes); in ecryptfs_derive_iv()
614 crypt_stat->iv_bytes = ECRYPTFS_DEFAULT_IV_BYTES; in ecryptfs_set_default_sizes()
636 BUG_ON(crypt_stat->iv_bytes > MD5_DIGEST_SIZE); in ecryptfs_compute_root_iv()
[all …]
Decryptfs_kernel.h232 size_t iv_bytes; member