Lines Matching refs:type
348 strscpy(rblkcipher.type, "skcipher", sizeof(rblkcipher.type)); in crypto_skcipher_report()
372 .type = CRYPTO_ALG_TYPE_SKCIPHER,
379 const char *name, u32 type, u32 mask) in crypto_grab_skcipher() argument
382 return crypto_grab_spawn(&spawn->base, inst, name, type, mask); in crypto_grab_skcipher()
387 u32 type, u32 mask) in crypto_alloc_skcipher() argument
389 return crypto_alloc_tfm(alg_name, &crypto_skcipher_type, type, mask); in crypto_alloc_skcipher()
394 const char *alg_name, u32 type, u32 mask) in crypto_alloc_sync_skcipher() argument
400 type &= ~(CRYPTO_ALG_ASYNC | CRYPTO_ALG_SKCIPHER_REQSIZE_LARGE); in crypto_alloc_sync_skcipher()
402 tfm = crypto_alloc_tfm(alg_name, &crypto_skcipher_type, type, mask); in crypto_alloc_sync_skcipher()
418 int crypto_has_skcipher(const char *alg_name, u32 type, u32 mask) in crypto_has_skcipher() argument
420 return crypto_type_has_alg(alg_name, &crypto_skcipher_type, type, mask); in crypto_has_skcipher()