Home
last modified time | relevance | path

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

/linux/drivers/crypto/ti/
H A Ddthev2-aes.c111 ctx->skcipher_fb = crypto_alloc_sync_skcipher("xts(aes)", 0, in dthe_cipher_xts_init_tfm()
113 if (IS_ERR(ctx->skcipher_fb)) { in dthe_cipher_xts_init_tfm()
115 return PTR_ERR(ctx->skcipher_fb); in dthe_cipher_xts_init_tfm()
125 crypto_free_sync_skcipher(ctx->skcipher_fb); in dthe_cipher_xts_exit_tfm()
172 crypto_sync_skcipher_clear_flags(ctx->skcipher_fb, CRYPTO_TFM_REQ_MASK); in dthe_aes_xts_setkey()
173 crypto_sync_skcipher_set_flags(ctx->skcipher_fb, in dthe_aes_xts_setkey()
177 return crypto_sync_skcipher_setkey(ctx->skcipher_fb, key, keylen); in dthe_aes_xts_setkey()
414 SYNC_SKCIPHER_REQUEST_ON_STACK(subreq, ctx->skcipher_fb); in dthe_aes_crypt()
H A Ddthev2-common.h89 struct crypto_sync_skcipher *skcipher_fb; member