Lines Matching refs:fallback
24 struct crypto_skcipher *fallback; member
33 struct crypto_skcipher *fallback; in p8_aes_xts_init() local
35 fallback = crypto_alloc_skcipher("xts(aes)", 0, in p8_aes_xts_init()
38 if (IS_ERR(fallback)) { in p8_aes_xts_init()
40 PTR_ERR(fallback)); in p8_aes_xts_init()
41 return PTR_ERR(fallback); in p8_aes_xts_init()
45 crypto_skcipher_reqsize(fallback)); in p8_aes_xts_init()
46 ctx->fallback = fallback; in p8_aes_xts_init()
54 crypto_free_skcipher(ctx->fallback); in p8_aes_xts_exit()
77 ret |= crypto_skcipher_setkey(ctx->fallback, key, keylen); in p8_aes_xts_setkey()
98 skcipher_request_set_tfm(subreq, ctx->fallback); in p8_aes_xts_crypt()