streamcipher       71 crypto/adiantum.c 	struct crypto_skcipher *streamcipher;
streamcipher      132 crypto/adiantum.c 	crypto_skcipher_clear_flags(tctx->streamcipher, CRYPTO_TFM_REQ_MASK);
streamcipher      133 crypto/adiantum.c 	crypto_skcipher_set_flags(tctx->streamcipher,
streamcipher      136 crypto/adiantum.c 	err = crypto_skcipher_setkey(tctx->streamcipher, key, keylen);
streamcipher      138 crypto/adiantum.c 				crypto_skcipher_get_flags(tctx->streamcipher) &
streamcipher      145 crypto/adiantum.c 		       crypto_skcipher_reqsize(tctx->streamcipher), GFP_KERNEL);
streamcipher      151 crypto/adiantum.c 	skcipher_request_set_tfm(&data->req, tctx->streamcipher);
streamcipher      385 crypto/adiantum.c 	skcipher_request_set_tfm(&rctx->u.streamcipher_req, tctx->streamcipher);
streamcipher      410 crypto/adiantum.c 	struct crypto_skcipher *streamcipher;
streamcipher      416 crypto/adiantum.c 	streamcipher = crypto_spawn_skcipher(&ictx->streamcipher_spawn);
streamcipher      417 crypto/adiantum.c 	if (IS_ERR(streamcipher))
streamcipher      418 crypto/adiantum.c 		return PTR_ERR(streamcipher);
streamcipher      432 crypto/adiantum.c 	tctx->streamcipher = streamcipher;
streamcipher      443 crypto/adiantum.c 			  crypto_skcipher_reqsize(streamcipher));
streamcipher      453 crypto/adiantum.c 	crypto_free_skcipher(streamcipher);
streamcipher      461 crypto/adiantum.c 	crypto_free_skcipher(tctx->streamcipher);