Home
last modified time | relevance | path

Searched refs:crt (Results 1 – 4 of 4) sorted by relevance

/crypto/
Dshash.c354 struct crypto_ahash *crt = __crypto_ahash_cast(tfm); in crypto_init_shash_ops_async() local
370 crt->init = shash_async_init; in crypto_init_shash_ops_async()
371 crt->update = shash_async_update; in crypto_init_shash_ops_async()
372 crt->final = shash_async_final; in crypto_init_shash_ops_async()
373 crt->finup = shash_async_finup; in crypto_init_shash_ops_async()
374 crt->digest = shash_async_digest; in crypto_init_shash_ops_async()
376 crt->setkey = shash_async_setkey; in crypto_init_shash_ops_async()
378 crypto_ahash_set_flags(crt, crypto_shash_get_flags(shash) & in crypto_init_shash_ops_async()
381 crt->export = shash_async_export; in crypto_init_shash_ops_async()
382 crt->import = shash_async_import; in crypto_init_shash_ops_async()
[all …]
Dblkcipher.c456 struct ablkcipher_tfm *crt = &tfm->crt_ablkcipher; in crypto_init_blkcipher_ops_async() local
459 crt->setkey = async_setkey; in crypto_init_blkcipher_ops_async()
460 crt->encrypt = async_encrypt; in crypto_init_blkcipher_ops_async()
461 crt->decrypt = async_decrypt; in crypto_init_blkcipher_ops_async()
462 crt->base = __crypto_ablkcipher_cast(tfm); in crypto_init_blkcipher_ops_async()
463 crt->ivsize = alg->ivsize; in crypto_init_blkcipher_ops_async()
470 struct blkcipher_tfm *crt = &tfm->crt_blkcipher; in crypto_init_blkcipher_ops_sync() local
475 crt->setkey = setkey; in crypto_init_blkcipher_ops_sync()
476 crt->encrypt = alg->encrypt; in crypto_init_blkcipher_ops_sync()
477 crt->decrypt = alg->decrypt; in crypto_init_blkcipher_ops_sync()
[all …]
Dscompress.c189 struct crypto_acomp *crt = __crypto_acomp_tfm(tfm); in crypto_init_scomp_ops_async() local
205 crt->compress = scomp_acomp_compress; in crypto_init_scomp_ops_async()
206 crt->decompress = scomp_acomp_decompress; in crypto_init_scomp_ops_async()
207 crt->dst_free = sgl_free; in crypto_init_scomp_ops_async()
208 crt->reqsize = sizeof(void *); in crypto_init_scomp_ops_async()
Dablkcipher.c344 struct ablkcipher_tfm *crt = &tfm->crt_ablkcipher; in crypto_init_ablkcipher_ops() local
349 crt->setkey = setkey; in crypto_init_ablkcipher_ops()
350 crt->encrypt = alg->encrypt; in crypto_init_ablkcipher_ops()
351 crt->decrypt = alg->decrypt; in crypto_init_ablkcipher_ops()
352 crt->base = __crypto_ablkcipher_cast(tfm); in crypto_init_ablkcipher_ops()
353 crt->ivsize = alg->ivsize; in crypto_init_ablkcipher_ops()