Home
last modified time | relevance | path

Searched refs:crypto_cfg (Results 1 – 6 of 6) sorted by relevance

/linux/block/
H A Dblk-crypto.c226 bio->bi_crypt_context->bc_key->crypto_cfg.data_unit_size; in bio_crypt_check_alignment()
304 &bc_key->crypto_cfg)) in __blk_crypto_bio_prep()
374 blk_key->crypto_cfg.crypto_mode = crypto_mode; in blk_crypto_init_key()
375 blk_key->crypto_cfg.dun_bytes = dun_bytes; in blk_crypto_init_key()
376 blk_key->crypto_cfg.data_unit_size = data_unit_size; in blk_crypto_init_key()
377 blk_key->crypto_cfg.key_type = key_type; in blk_crypto_init_key()
426 if (blk_crypto_config_supported_natively(bdev, &key->crypto_cfg)) in blk_crypto_start_using_key()
428 if (key->crypto_cfg.key_type != BLK_CRYPTO_KEY_TYPE_RAW) { in blk_crypto_start_using_key()
432 return blk_crypto_fallback_start_using_mode(key->crypto_cfg.crypto_mode); in blk_crypto_start_using_key()
456 if (blk_crypto_config_supported_natively(bdev, &key->crypto_cfg)) in blk_crypto_evict_key()
/linux/fs/crypto/
H A Dinline_crypt.c98 struct blk_crypto_config crypto_cfg; in fscrypt_select_encryption_impl() local
132 crypto_cfg.crypto_mode = ci->ci_mode->blk_crypto_mode; in fscrypt_select_encryption_impl()
133 crypto_cfg.data_unit_size = 1U << ci->ci_data_unit_bits; in fscrypt_select_encryption_impl()
134 crypto_cfg.dun_bytes = fscrypt_get_dun_bytes(ci); in fscrypt_select_encryption_impl()
135 crypto_cfg.key_type = is_hw_wrapped_key ? in fscrypt_select_encryption_impl()
143 if (!blk_crypto_config_supported(devs[i], &crypto_cfg)) in fscrypt_select_encryption_impl()
147 fscrypt_log_blk_crypto_impl(ci->ci_mode, devs, num_devs, &crypto_cfg); in fscrypt_select_encryption_impl()
/linux/drivers/soc/qcom/
H A Dice.c59 union crypto_cfg { union
342 union crypto_cfg cfg = { in qcom_ice_program_wrapped_key()
343 .dusize = bkey->crypto_cfg.data_unit_size / 512, in qcom_ice_program_wrapped_key()
389 if (blk_key->crypto_cfg.crypto_mode != in qcom_ice_program_key()
392 blk_key->crypto_cfg.crypto_mode); in qcom_ice_program_key()
396 if (blk_key->crypto_cfg.key_type == BLK_CRYPTO_KEY_TYPE_HW_WRAPPED) in qcom_ice_program_key()
416 blk_key->crypto_cfg.data_unit_size / 512); in qcom_ice_program_key()
/linux/drivers/mmc/host/
H A Dcqhci-crypto.c63 &cqhci_crypto_algs[key->crypto_cfg.crypto_mode]; in cqhci_crypto_keyslot_program()
64 u8 data_unit_mask = key->crypto_cfg.data_unit_size / 512; in cqhci_crypto_keyslot_program()
/linux/drivers/ufs/core/
H A Dufshcd-crypto.c50 &ufs_crypto_algs[key->crypto_cfg.crypto_mode]; in ufshcd_crypto_keyslot_program()
51 u8 data_unit_mask = key->crypto_cfg.data_unit_size / 512; in ufshcd_crypto_keyslot_program()
/linux/include/linux/
H A Dblk-crypto.h102 struct blk_crypto_config crypto_cfg; member