| /linux/include/crypto/ |
| H A D | engine.h | 17 struct crypto_engine; 25 int (*do_one_request)(struct crypto_engine *engine, 54 int crypto_transfer_aead_request_to_engine(struct crypto_engine *engine, 56 int crypto_transfer_akcipher_request_to_engine(struct crypto_engine *engine, 58 int crypto_transfer_hash_request_to_engine(struct crypto_engine *engine, 60 int crypto_transfer_kpp_request_to_engine(struct crypto_engine *engine, 62 int crypto_transfer_skcipher_request_to_engine(struct crypto_engine *engine, 64 void crypto_finalize_aead_request(struct crypto_engine *engine, 66 void crypto_finalize_akcipher_request(struct crypto_engine *engine, 68 void crypto_finalize_hash_request(struct crypto_engine *engine, [all …]
|
| /linux/drivers/crypto/aspeed/ |
| H A D | aspeed-hace.c | 31 struct aspeed_engine_crypto *crypto_engine = &hace_dev->crypto_engine; in aspeed_hace_irq() local 48 if (crypto_engine->flags & CRYPTO_FLAGS_BUSY) in aspeed_hace_irq() 49 tasklet_schedule(&crypto_engine->done_task); in aspeed_hace_irq() 60 struct aspeed_engine_crypto *crypto_engine = &hace_dev->crypto_engine; in aspeed_hace_crypto_done_task() local 62 crypto_engine->resume(hace_dev); in aspeed_hace_crypto_done_task() 101 struct aspeed_engine_crypto *crypto_engine; in aspeed_hace_probe() local 119 crypto_engine = &hace_dev->crypto_engine; in aspeed_hace_probe() 179 tasklet_init(&crypto_engine->done_task, aspeed_hace_crypto_done_task, in aspeed_hace_probe() 195 crypto_engine->cipher_ctx = in aspeed_hace_probe() 198 &crypto_engine->cipher_ctx_dma, in aspeed_hace_probe() [all …]
|
| H A D | aspeed-hace-crypto.c | 79 static int aspeed_crypto_do_request(struct crypto_engine *engine, void *areq) in aspeed_crypto_do_request() 85 struct aspeed_engine_crypto *crypto_engine; in aspeed_crypto_do_request() local 88 crypto_engine = &hace_dev->crypto_engine; in aspeed_crypto_do_request() 89 crypto_engine->req = req; in aspeed_crypto_do_request() 90 crypto_engine->flags |= CRYPTO_FLAGS_BUSY; in aspeed_crypto_do_request() 102 struct aspeed_engine_crypto *crypto_engine = &hace_dev->crypto_engine; in aspeed_sk_complete() local 108 req = crypto_engine->req; in aspeed_sk_complete() 113 memcpy(req->iv, crypto_engine->cipher_ctx + in aspeed_sk_complete() 116 memcpy(req->iv, crypto_engine->cipher_ctx, in aspeed_sk_complete() 120 crypto_engine->flags &= ~CRYPTO_FLAGS_BUSY; in aspeed_sk_complete() [all …]
|
| H A D | aspeed-hace.h | 241 struct crypto_engine *crypt_engine_hash; 242 struct crypto_engine *crypt_engine_crypto; 245 struct aspeed_engine_crypto crypto_engine; member
|
| H A D | aspeed-hace-hash.c | 458 static int aspeed_ahash_do_request(struct crypto_engine *engine, void *areq) 477 static void aspeed_ahash_prepare_request(struct crypto_engine *engine, 495 static int aspeed_ahash_do_one(struct crypto_engine *engine, void *areq)
|
| /linux/Documentation/crypto/ |
| H A D | crypto_engine.rst | 13 crypto_engine: 18 struct crypto_engine engine; 27 of the known member ``struct crypto_engine`` at the beginning. 31 You are required to obtain a struct crypto_engine via ``crypto_engine_alloc_init()``.
|
| H A D | index.rst | 24 crypto_engine
|
| /linux/drivers/crypto/amlogic/ |
| H A D | amlogic-gxl.h | 70 struct crypto_engine *engine; 159 int meson_handle_cipher_request(struct crypto_engine *engine, void *areq);
|
| H A D | amlogic-gxl-cipher.c | 261 int meson_handle_cipher_request(struct crypto_engine *engine, void *areq) in meson_handle_cipher_request() 279 struct crypto_engine *engine; in meson_skdecrypt() 297 struct crypto_engine *engine; in meson_skencrypt()
|
| /linux/drivers/crypto/allwinner/sun8i-ss/ |
| H A D | sun8i-ss.h | 132 struct crypto_engine *engine; 296 int sun8i_ss_handle_cipher_request(struct crypto_engine *engine, void *areq); 318 int sun8i_ss_hash_run(struct crypto_engine *engine, void *breq);
|
| H A D | sun8i-ss-cipher.c | 332 int sun8i_ss_handle_cipher_request(struct crypto_engine *engine, void *areq) in sun8i_ss_handle_cipher_request() 350 struct crypto_engine *engine; in sun8i_ss_skdecrypt() 371 struct crypto_engine *engine; in sun8i_ss_skencrypt()
|
| /linux/drivers/crypto/virtio/ |
| H A D | virtio_crypto_common.h | 32 struct crypto_engine *engine; 129 struct crypto_engine *engine, void *vreq);
|
| /linux/drivers/crypto/allwinner/sun8i-ce/ |
| H A D | sun8i-ce.h | 197 struct crypto_engine *engine; 382 int sun8i_ce_cipher_do_one(struct crypto_engine *engine, void *areq); 399 int sun8i_ce_hash_run(struct crypto_engine *engine, void *breq);
|
| H A D | sun8i-ce-cipher.c | 349 int sun8i_ce_cipher_do_one(struct crypto_engine *engine, void *areq) in sun8i_ce_cipher_do_one() 382 struct crypto_engine *engine; in sun8i_ce_skdecrypt() 401 struct crypto_engine *engine; in sun8i_ce_skencrypt()
|
| /linux/drivers/crypto/gemini/ |
| H A D | sl3516-ce.h | 234 struct crypto_engine *engine; 341 int sl3516_ce_handle_cipher_request(struct crypto_engine *engine, void *areq);
|
| H A D | sl3516-ce-cipher.c | 265 int sl3516_ce_handle_cipher_request(struct crypto_engine *engine, void *areq) in sl3516_ce_handle_cipher_request() 283 struct crypto_engine *engine; in sl3516_ce_skdecrypt() 301 struct crypto_engine *engine; in sl3516_ce_skencrypt()
|
| /linux/drivers/crypto/rockchip/ |
| H A D | rk3288_crypto_ahash.c | 211 struct crypto_engine *engine; in rk_ahash_digest() 235 static int rk_hash_prepare(struct crypto_engine *engine, void *breq) in rk_hash_prepare() 251 static void rk_hash_unprepare(struct crypto_engine *engine, void *breq) in rk_hash_unprepare() 260 static int rk_hash_run(struct crypto_engine *engine, void *breq) in rk_hash_run()
|
| H A D | rk3288_crypto.h | 224 struct crypto_engine *engine;
|
| /linux/drivers/crypto/ti/ |
| H A D | dthev2-common.h | 61 struct crypto_engine *engine;
|
| H A D | dthev2-aes.c | 330 static int dthe_aes_run(struct crypto_engine *engine, void *areq) in dthe_aes_run() 524 struct crypto_engine *engine; 849 static int dthe_aead_run(struct crypto_engine *engine, void *areq) 1133 struct crypto_engine *engine;
|
| /linux/drivers/crypto/ |
| H A D | omap-aes.h | 168 struct crypto_engine *engine; 217 int omap_aes_gcm_crypt_req(struct crypto_engine *engine, void *areq);
|
| /linux/drivers/crypto/intel/keembay/ |
| H A D | ocs-hcu.h | 41 struct crypto_engine *engine;
|
| H A D | ocs-aes.h | 52 struct crypto_engine *engine;
|
| /linux/drivers/crypto/caam/ |
| H A D | intern.h | 84 struct crypto_engine *engine;
|
| /linux/drivers/crypto/starfive/ |
| H A D | jh7110-cryp.h | 191 struct crypto_engine *engine;
|