/kernel/linux/linux-6.6/crypto/ |
H A D | kpp.c | 9 #include <crypto/internal/kpp.h> 27 strscpy(rkpp.type, "kpp", sizeof(rkpp.type)); in crypto_kpp_report() 37 seq_puts(m, "type : kpp\n"); in crypto_kpp_show() 42 struct crypto_kpp *kpp = __crypto_kpp_tfm(tfm); in crypto_kpp_exit_tfm() local 43 struct kpp_alg *alg = crypto_kpp_alg(kpp); in crypto_kpp_exit_tfm() 45 alg->exit(kpp); in crypto_kpp_exit_tfm() 50 struct crypto_kpp *kpp = __crypto_kpp_tfm(tfm); in crypto_kpp_init_tfm() local 51 struct kpp_alg *alg = crypto_kpp_alg(kpp); in crypto_kpp_init_tfm() 54 kpp->base.exit = crypto_kpp_exit_tfm; in crypto_kpp_init_tfm() 57 return alg->init(kpp); in crypto_kpp_init_tfm() 64 struct kpp_instance *kpp = kpp_instance(inst); crypto_kpp_free_instance() local 72 struct kpp_alg *kpp = __crypto_kpp_alg(alg); crypto_kpp_report_stat() local [all...] |
H A D | curve25519-generic.c | 4 #include <crypto/internal/kpp.h> 5 #include <crypto/kpp.h>
|
H A D | ecdh.c | 10 #include <crypto/internal/kpp.h> 11 #include <crypto/kpp.h>
|
H A D | ecdh_helper.c | 11 #include <crypto/kpp.h>
|
H A D | dh_helper.c | 11 #include <crypto/kpp.h>
|
/kernel/linux/linux-5.10/crypto/ |
H A D | kpp.c | 19 #include <crypto/kpp.h> 20 #include <crypto/internal/kpp.h> 30 strscpy(rkpp.type, "kpp", sizeof(rkpp.type)); in crypto_kpp_report() 46 seq_puts(m, "type : kpp\n"); in crypto_kpp_show() 51 struct crypto_kpp *kpp = __crypto_kpp_tfm(tfm); in crypto_kpp_exit_tfm() local 52 struct kpp_alg *alg = crypto_kpp_alg(kpp); in crypto_kpp_exit_tfm() 54 alg->exit(kpp); in crypto_kpp_exit_tfm() 59 struct crypto_kpp *kpp = __crypto_kpp_tfm(tfm); in crypto_kpp_init_tfm() local 60 struct kpp_alg *alg = crypto_kpp_alg(kpp); in crypto_kpp_init_tfm() 63 kpp in crypto_kpp_init_tfm() [all...] |
H A D | curve25519-generic.c | 4 #include <crypto/internal/kpp.h> 5 #include <crypto/kpp.h>
|
H A D | crypto_user_stat.c | 17 #include <crypto/kpp.h> 122 strscpy(rkpp.type, "kpp", sizeof(rkpp.type)); in crypto_report_kpp() 124 rkpp.stat_setsecret_cnt = atomic64_read(&alg->stats.kpp.setsecret_cnt); in crypto_report_kpp() 125 rkpp.stat_generate_public_key_cnt = atomic64_read(&alg->stats.kpp.generate_public_key_cnt); in crypto_report_kpp() 126 rkpp.stat_compute_shared_secret_cnt = atomic64_read(&alg->stats.kpp.compute_shared_secret_cnt); in crypto_report_kpp() 127 rkpp.stat_err_cnt = atomic64_read(&alg->stats.kpp.err_cnt); in crypto_report_kpp()
|
H A D | ecdh.c | 9 #include <crypto/internal/kpp.h> 10 #include <crypto/kpp.h>
|
H A D | dh.c | 9 #include <crypto/internal/kpp.h> 10 #include <crypto/kpp.h>
|
H A D | ecdh_helper.c | 11 #include <crypto/kpp.h>
|
H A D | algapi.c | 1220 atomic64_inc(&alg->stats.kpp.err_cnt); in crypto_stats_kpp_set_secret() 1222 atomic64_inc(&alg->stats.kpp.setsecret_cnt); in crypto_stats_kpp_set_secret() 1230 atomic64_inc(&alg->stats.kpp.err_cnt); in crypto_stats_kpp_generate_public_key() 1232 atomic64_inc(&alg->stats.kpp.generate_public_key_cnt); in crypto_stats_kpp_generate_public_key() 1240 atomic64_inc(&alg->stats.kpp.err_cnt); in crypto_stats_kpp_compute_shared_secret() 1242 atomic64_inc(&alg->stats.kpp.compute_shared_secret_cnt); in crypto_stats_kpp_compute_shared_secret()
|
H A D | dh_helper.c | 11 #include <crypto/kpp.h>
|
/kernel/linux/linux-6.6/include/crypto/internal/ |
H A D | kpp.h | 10 #include <crypto/kpp.h> 63 static inline void kpp_set_reqsize(struct crypto_kpp *kpp, in kpp_set_reqsize() argument 66 kpp->reqsize = reqsize; in kpp_set_reqsize() 69 static inline void kpp_set_reqsize_dma(struct crypto_kpp *kpp, in kpp_set_reqsize_dma() argument 73 kpp->reqsize = reqsize; in kpp_set_reqsize_dma() 125 * @kpp: The KPP transform instantiated from some &struct kpp_instance. 126 * Return: The &struct kpp_instance associated with @kpp. 128 static inline struct kpp_instance *kpp_alg_instance(struct crypto_kpp *kpp) in kpp_alg_instance() argument 130 return kpp_instance(crypto_tfm_alg_instance(&kpp->base)); in kpp_alg_instance()
|
/kernel/linux/linux-6.6/mm/kfence/ |
H A D | report.c | 293 bool __kfence_obj_info(struct kmem_obj_info *kpp, void *object, struct slab *slab) in __kfence_obj_info() argument 305 kpp->kp_ptr = object; in __kfence_obj_info() 313 kpp->kp_slab = slab; in __kfence_obj_info() 314 kpp->kp_slab_cache = meta->cache; in __kfence_obj_info() 315 kpp->kp_objp = (void *)meta->addr; in __kfence_obj_info() 316 kfence_to_kp_stack(&meta->alloc_track, kpp->kp_stack); in __kfence_obj_info() 318 kfence_to_kp_stack(&meta->free_track, kpp->kp_free_stack); in __kfence_obj_info() 320 kpp->kp_ret = kpp->kp_stack[0]; in __kfence_obj_info()
|
/kernel/linux/linux-6.6/drivers/nvme/common/ |
H A D | auth.c | 40 const char kpp[16]; member 43 .name = "null", .kpp = "null" }, 45 .name = "ffdhe2048", .kpp = "ffdhe2048(dh)" }, 47 .name = "ffdhe3072", .kpp = "ffdhe3072(dh)" }, 49 .name = "ffdhe4096", .kpp = "ffdhe4096(dh)" }, 51 .name = "ffdhe6144", .kpp = "ffdhe6144(dh)" }, 53 .name = "ffdhe8192", .kpp = "ffdhe8192(dh)" }, 68 return dhgroup_map[dhgroup_id].kpp; in nvme_auth_dhgroup_kpp()
|
/kernel/linux/linux-6.6/include/linux/ |
H A D | kfence.h | 212 * @kpp: kmem_obj_info to be filled 217 * * true - a KFENCE object, filled @kpp 219 * Copies information to @kpp for KFENCE objects. 221 bool __kfence_obj_info(struct kmem_obj_info *kpp, void *object, struct slab *slab); 243 static inline bool __kfence_obj_info(struct kmem_obj_info *kpp, void *object, struct slab *slab) in __kfence_obj_info() argument
|
H A D | nvme-auth.h | 9 #include <crypto/kpp.h>
|
/kernel/linux/linux-5.10/include/crypto/internal/ |
H A D | kpp.h | 10 #include <crypto/kpp.h>
|
/kernel/linux/linux-5.10/drivers/crypto/ |
H A D | atmel-ecc.c | 21 #include <crypto/internal/kpp.h> 23 #include <crypto/kpp.h>
|
/kernel/linux/linux-6.6/drivers/crypto/ |
H A D | atmel-ecc.c | 21 #include <crypto/internal/kpp.h> 23 #include <crypto/kpp.h>
|
/kernel/linux/linux-5.10/arch/arm/crypto/ |
H A D | curve25519-glue.c | 13 #include <crypto/internal/kpp.h>
|
/kernel/linux/linux-6.6/arch/arm/crypto/ |
H A D | curve25519-glue.c | 13 #include <crypto/internal/kpp.h>
|
/kernel/linux/linux-6.6/include/crypto/ |
H A D | engine.h | 13 #include <crypto/kpp.h>
|
/kernel/linux/linux-6.6/drivers/nvme/target/ |
H A D | fabrics-cmd-auth.c | 12 #include <crypto/kpp.h> 89 const char *kpp = nvme_auth_dhgroup_kpp(tmp_dhgid); in nvmet_auth_negotiate() local 91 if (crypto_has_kpp(kpp, 0, 0)) in nvmet_auth_negotiate()
|