Lines Matching refs:xts_ctx

381 	struct s390_xts_ctx *xts_ctx = crypto_skcipher_ctx(tfm);  in xts_fallback_setkey()  local
383 crypto_skcipher_clear_flags(xts_ctx->fallback, CRYPTO_TFM_REQ_MASK); in xts_fallback_setkey()
384 crypto_skcipher_set_flags(xts_ctx->fallback, in xts_fallback_setkey()
387 return crypto_skcipher_setkey(xts_ctx->fallback, key, len); in xts_fallback_setkey()
393 struct s390_xts_ctx *xts_ctx = crypto_skcipher_ctx(tfm); in xts_aes_set_key() local
410 xts_ctx->fc = (fc && cpacf_test_func(&km_functions, fc)) ? fc : 0; in xts_aes_set_key()
411 if (!xts_ctx->fc) in xts_aes_set_key()
416 xts_ctx->key_len = key_len; in xts_aes_set_key()
417 memcpy(xts_ctx->key, in_key, key_len); in xts_aes_set_key()
418 memcpy(xts_ctx->pcc_key, in_key + key_len, key_len); in xts_aes_set_key()
425 struct s390_xts_ctx *xts_ctx = crypto_skcipher_ctx(tfm); in xts_aes_crypt() local
444 if (unlikely(!xts_ctx->fc || (req->cryptlen % AES_BLOCK_SIZE) != 0)) { in xts_aes_crypt()
448 skcipher_request_set_tfm(subreq, xts_ctx->fallback); in xts_aes_crypt()
457 offset = xts_ctx->key_len & 0x10; in xts_aes_crypt()
462 memcpy(pcc_param.key + offset, xts_ctx->pcc_key, xts_ctx->key_len); in xts_aes_crypt()
463 cpacf_pcc(xts_ctx->fc, pcc_param.key + offset); in xts_aes_crypt()
465 memcpy(xts_param.key + offset, xts_ctx->key, xts_ctx->key_len); in xts_aes_crypt()
471 cpacf_km(xts_ctx->fc | modifier, xts_param.key + offset, in xts_aes_crypt()
493 struct s390_xts_ctx *xts_ctx = crypto_skcipher_ctx(tfm); in xts_fallback_init() local
495 xts_ctx->fallback = crypto_alloc_skcipher(name, 0, in xts_fallback_init()
498 if (IS_ERR(xts_ctx->fallback)) { in xts_fallback_init()
501 return PTR_ERR(xts_ctx->fallback); in xts_fallback_init()
504 crypto_skcipher_reqsize(xts_ctx->fallback)); in xts_fallback_init()
510 struct s390_xts_ctx *xts_ctx = crypto_skcipher_ctx(tfm); in xts_fallback_exit() local
512 crypto_free_skcipher(xts_ctx->fallback); in xts_fallback_exit()