Lines Matching refs:tfm
20 struct crypto_skcipher *tfm; member
281 static int virtio_crypto_skcipher_setkey(struct crypto_skcipher *tfm, in virtio_crypto_skcipher_setkey() argument
285 struct virtio_crypto_skcipher_ctx *ctx = crypto_skcipher_ctx(tfm); in virtio_crypto_skcipher_setkey()
327 struct crypto_skcipher *tfm = crypto_skcipher_reqtfm(req); in __virtio_crypto_skcipher_do_req() local
330 unsigned int ivsize = crypto_skcipher_ivsize(tfm); in __virtio_crypto_skcipher_do_req()
516 static int virtio_crypto_skcipher_init(struct crypto_skcipher *tfm) in virtio_crypto_skcipher_init() argument
518 struct virtio_crypto_skcipher_ctx *ctx = crypto_skcipher_ctx(tfm); in virtio_crypto_skcipher_init()
520 crypto_skcipher_set_reqsize(tfm, sizeof(struct virtio_crypto_sym_request)); in virtio_crypto_skcipher_init()
521 ctx->tfm = tfm; in virtio_crypto_skcipher_init()
526 static void virtio_crypto_skcipher_exit(struct crypto_skcipher *tfm) in virtio_crypto_skcipher_exit() argument
528 struct virtio_crypto_skcipher_ctx *ctx = crypto_skcipher_ctx(tfm); in virtio_crypto_skcipher_exit()