/linux-6.12.1/drivers/crypto/starfive/ |
D | jh7110-rsa.c | 173 struct starfive_rsa_key *key = &ctx->rsa_key; in starfive_rsa_cpu_start() 252 struct starfive_rsa_key *key = &ctx->rsa_key; in starfive_rsa_enc_core() 291 struct starfive_rsa_key *key = &ctx->rsa_key; in starfive_rsa_enc() 322 struct starfive_rsa_key *key = &ctx->rsa_key; in starfive_rsa_dec() 348 static int starfive_rsa_set_n(struct starfive_rsa_key *rsa_key, in starfive_rsa_set_n() argument 359 rsa_key->key_sz = vlen; in starfive_rsa_set_n() 360 bitslen = rsa_key->key_sz << 3; in starfive_rsa_set_n() 367 rsa_key->n = kmemdup(ptr, rsa_key->key_sz, GFP_KERNEL); in starfive_rsa_set_n() 368 if (!rsa_key->n) in starfive_rsa_set_n() 373 rsa_key->key_sz = 0; in starfive_rsa_set_n() [all …]
|
D | jh7110-cryp.h | 169 struct starfive_rsa_key rsa_key; member
|
/linux-6.12.1/crypto/ |
D | rsa_helper.c | 19 struct rsa_key *key = context; in rsa_get_n() 49 struct rsa_key *key = context; in rsa_get_e() 64 struct rsa_key *key = context; in rsa_get_d() 79 struct rsa_key *key = context; in rsa_get_p() 94 struct rsa_key *key = context; in rsa_get_q() 109 struct rsa_key *key = context; in rsa_get_dp() 124 struct rsa_key *key = context; in rsa_get_dq() 139 struct rsa_key *key = context; in rsa_get_qinv() 162 int rsa_parse_pub_key(struct rsa_key *rsa_key, const void *key, in rsa_parse_pub_key() argument 165 return asn1_ber_decoder(&rsapubkey_decoder, rsa_key, key, key_len); in rsa_parse_pub_key() [all …]
|
D | rsa.c | 273 struct rsa_key raw_key = {0}; in rsa_set_pub_key() 312 struct rsa_key raw_key = {0}; in rsa_set_priv_key()
|
/linux-6.12.1/drivers/crypto/caam/ |
D | caampkc.c | 947 struct rsa_key raw_key = {NULL}; in caam_rsa_set_pub_key() 948 struct caam_rsa_key *rsa_key = &ctx->key; in caam_rsa_set_pub_key() local 952 caam_rsa_free_key(rsa_key); in caam_rsa_set_pub_key() 959 rsa_key->e = kmemdup(raw_key.e, raw_key.e_sz, GFP_KERNEL); in caam_rsa_set_pub_key() 960 if (!rsa_key->e) in caam_rsa_set_pub_key() 969 rsa_key->n = caam_read_raw_data(raw_key.n, &raw_key.n_sz); in caam_rsa_set_pub_key() 970 if (!rsa_key->n) in caam_rsa_set_pub_key() 974 caam_rsa_free_key(rsa_key); in caam_rsa_set_pub_key() 978 rsa_key->e_sz = raw_key.e_sz; in caam_rsa_set_pub_key() 979 rsa_key->n_sz = raw_key.n_sz; in caam_rsa_set_pub_key() [all …]
|
/linux-6.12.1/include/crypto/internal/ |
D | rsa.h | 31 struct rsa_key { struct 50 int rsa_parse_pub_key(struct rsa_key *rsa_key, const void *key, argument 53 int rsa_parse_priv_key(struct rsa_key *rsa_key, const void *key,
|
/linux-6.12.1/drivers/crypto/intel/qat/qat_common/ |
D | qat_asym_algs.c | 1076 static void qat_rsa_setkey_crt(struct qat_rsa_ctx *ctx, struct rsa_key *rsa_key) in qat_rsa_setkey_crt() argument 1085 ptr = rsa_key->p; in qat_rsa_setkey_crt() 1086 len = rsa_key->p_sz; in qat_rsa_setkey_crt() 1096 ptr = rsa_key->q; in qat_rsa_setkey_crt() 1097 len = rsa_key->q_sz; in qat_rsa_setkey_crt() 1107 ptr = rsa_key->dp; in qat_rsa_setkey_crt() 1108 len = rsa_key->dp_sz; in qat_rsa_setkey_crt() 1119 ptr = rsa_key->dq; in qat_rsa_setkey_crt() 1120 len = rsa_key->dq_sz; in qat_rsa_setkey_crt() 1131 ptr = rsa_key->qinv; in qat_rsa_setkey_crt() [all …]
|
/linux-6.12.1/drivers/crypto/hisilicon/hpre/ |
D | hpre_crypto.c | 984 static int hpre_rsa_setkey_crt(struct hpre_ctx *ctx, struct rsa_key *rsa_key) in hpre_rsa_setkey_crt() argument 998 rsa_key->dq, rsa_key->dq_sz); in hpre_rsa_setkey_crt() 1004 rsa_key->dp, rsa_key->dp_sz); in hpre_rsa_setkey_crt() 1010 rsa_key->q, rsa_key->q_sz); in hpre_rsa_setkey_crt() 1016 rsa_key->p, rsa_key->p_sz); in hpre_rsa_setkey_crt() 1022 rsa_key->qinv, rsa_key->qinv_sz); in hpre_rsa_setkey_crt() 1078 static bool hpre_is_crt_key(struct rsa_key *key) in hpre_is_crt_key() 1092 struct rsa_key rsa_key; in hpre_rsa_setkey() local 1098 ret = rsa_parse_priv_key(&rsa_key, key, keylen); in hpre_rsa_setkey() 1100 ret = rsa_parse_pub_key(&rsa_key, key, keylen); in hpre_rsa_setkey() [all …]
|
/linux-6.12.1/drivers/crypto/virtio/ |
D | virtio_crypto_akcipher_algs.c | 377 struct rsa_key rsa_key = {0}; in virtio_crypto_rsa_set_key() local 388 ret = rsa_parse_priv_key(&rsa_key, key, keylen); in virtio_crypto_rsa_set_key() 391 ret = rsa_parse_pub_key(&rsa_key, key, keylen); in virtio_crypto_rsa_set_key() 397 rsa_ctx->n = mpi_read_raw_data(rsa_key.n, rsa_key.n_sz); in virtio_crypto_rsa_set_key()
|
/linux-6.12.1/drivers/crypto/ccp/ |
D | ccp-crypto-rsa.c | 130 struct rsa_key raw_key; in ccp_rsa_setkey()
|
/linux-6.12.1/drivers/crypto/aspeed/ |
D | aspeed-acry.c | 115 struct rsa_key key;
|