Home
last modified time | relevance | path

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

/kernel/linux/linux-5.10/fs/crypto/
Dkeysetup.c20 .cipher_str = "xts(aes)",
28 .cipher_str = "cts(cbc(aes))",
35 .cipher_str = "essiv(cbc(aes),sha256)",
43 .cipher_str = "cts(cbc(aes))",
50 .cipher_str = "adiantum(xchacha12,aes)",
85 tfm = crypto_alloc_skcipher(mode->cipher_str, 0, 0); in fscrypt_allocate_skcipher()
90 mode->friendly_name, mode->cipher_str); in fscrypt_allocate_skcipher()
94 mode->cipher_str, PTR_ERR(tfm)); in fscrypt_allocate_skcipher()
Dfscrypt_private.h559 const char *cipher_str; member
/kernel/linux/linux-5.10/block/
Dblk-crypto.c22 .cipher_str = "xts(aes)",
27 .cipher_str = "essiv(cbc(aes),sha256)",
32 .cipher_str = "adiantum(xchacha12,aes)",
Dblk-crypto-fallback.c602 const char *cipher_str = blk_crypto_modes[mode_num].cipher_str; in blk_crypto_fallback_start_using_mode() local
625 slotp->tfms[mode_num] = crypto_alloc_skcipher(cipher_str, 0, 0); in blk_crypto_fallback_start_using_mode()
630 cipher_str); in blk_crypto_fallback_start_using_mode()
Dblk-crypto-internal.h14 const char *cipher_str; /* crypto API name (for fallback case) */ member
/kernel/linux/linux-5.10/fs/ecryptfs/
Dcrypto.c903 char cipher_str[16]; member
949 if (strcmp(cipher_name, map[i].cipher_str) == 0) { in ecryptfs_code_for_cipher_string()
972 strcpy(str, ecryptfs_cipher_code_str_map[i].cipher_str); in ecryptfs_cipher_code_to_string()