Home
last modified time | relevance | path

Searched refs:cipher_parms (Results 1 – 6 of 6) sorted by relevance

/linux-5.19.10/drivers/crypto/bcm/
Dspu.c588 struct spu_cipher_parms *cipher_parms, in spum_create_request() argument
645 spu_alg_name(cipher_parms->alg, cipher_parms->mode), in spum_create_request()
646 cipher_parms->alg, cipher_parms->mode, cipher_parms->type); in spum_create_request()
647 flow_log(" key: %d\n", cipher_parms->key_len); in spum_create_request()
648 flow_dump(" key: ", cipher_parms->key_buf, cipher_parms->key_len); in spum_create_request()
649 flow_log(" iv: %d\n", cipher_parms->iv_len); in spum_create_request()
650 flow_dump(" iv: ", cipher_parms->iv_buf, cipher_parms->iv_len); in spum_create_request()
688 cipher_bits |= cipher_parms->alg << CIPHER_ALG_SHIFT; in spum_create_request()
689 cipher_bits |= cipher_parms->mode << CIPHER_MODE_SHIFT; in spum_create_request()
690 cipher_bits |= cipher_parms->type << CIPHER_TYPE_SHIFT; in spum_create_request()
[all …]
Dspu2.c946 struct spu_cipher_parms *cipher_parms, in spu2_create_request() argument
983 (cipher_parms->alg == CIPHER_ALG_AES) && in spu2_create_request()
984 (cipher_parms->mode == CIPHER_MODE_GCM)) in spu2_create_request()
993 (cipher_parms->alg == CIPHER_ALG_AES) && in spu2_create_request()
994 (cipher_parms->mode == CIPHER_MODE_CCM)) in spu2_create_request()
1000 flow_log(" cipher alg:%u mode:%u type %u\n", cipher_parms->alg, in spu2_create_request()
1001 cipher_parms->mode, cipher_parms->type); in spu2_create_request()
1003 flow_log(" key: %d\n", cipher_parms->key_len); in spu2_create_request()
1004 flow_dump(" key: ", cipher_parms->key_buf, cipher_parms->key_len); in spu2_create_request()
1005 flow_log(" iv: %d\n", cipher_parms->iv_len); in spu2_create_request()
[all …]
Dspu2.h194 struct spu_cipher_parms *cipher_parms,
198 u16 spu2_cipher_req_init(u8 *spu_hdr, struct spu_cipher_parms *cipher_parms);
202 struct spu_cipher_parms *cipher_parms,
212 struct spu_cipher_parms *cipher_parms,
Dspu.h244 struct spu_cipher_parms *cipher_parms,
249 u16 spum_cipher_req_init(u8 *spu_hdr, struct spu_cipher_parms *cipher_parms);
254 struct spu_cipher_parms *cipher_parms,
270 struct spu_cipher_parms *cipher_parms,
Dcipher.h382 struct spu_cipher_parms *cipher_parms,
387 struct spu_cipher_parms *cipher_parms);
391 struct spu_cipher_parms *cipher_parms,
402 struct spu_cipher_parms *cipher_parms,
Dcipher.c307 struct spu_cipher_parms cipher_parms; in handle_skcipher_req() local
325 cipher_parms.alg = ctx->cipher.alg; in handle_skcipher_req()
326 cipher_parms.mode = ctx->cipher.mode; in handle_skcipher_req()
327 cipher_parms.type = ctx->cipher_type; in handle_skcipher_req()
328 cipher_parms.key_len = ctx->enckeylen; in handle_skcipher_req()
329 cipher_parms.key_buf = ctx->enckey; in handle_skcipher_req()
330 cipher_parms.iv_buf = local_iv_ctr; in handle_skcipher_req()
331 cipher_parms.iv_len = rctx->iv_ctr_len; in handle_skcipher_req()
404 &cipher_parms, chunksize); in handle_skcipher_req()
680 struct spu_cipher_parms cipher_parms; in handle_ahash_req() local
[all …]