/kernel/linux/linux-5.10/crypto/ |
D | ecdh.c | 71 u64 *public_key; in ecdh_compute_value() local 81 public_key = kmalloc(public_key_sz, GFP_KERNEL); in ecdh_compute_value() 82 if (!public_key) in ecdh_compute_value() 100 public_key, public_key_sz); in ecdh_compute_value() 105 ctx->private_key, public_key, in ecdh_compute_value() 111 ctx->private_key, public_key); in ecdh_compute_value() 112 buf = public_key; in ecdh_compute_value() 131 kfree(public_key); in ecdh_compute_value()
|
D | curve25519-generic.c | 28 u8 public_key[CURVE25519_KEY_SIZE]; in curve25519_compute_value() local 37 public_key, CURVE25519_KEY_SIZE); in curve25519_compute_value() 40 bp = public_key; in curve25519_compute_value()
|
D | ecc.h | 138 const u64 *private_key, u64 *public_key); 156 const u64 *private_key, const u64 *public_key,
|
D | ecc.c | 1497 const u64 *private_key, u64 *public_key) in ecc_make_pub_key() argument 1525 ecc_swap_digits(pk->x, public_key, ndigits); in ecc_make_pub_key() 1526 ecc_swap_digits(pk->y, &public_key[ndigits], ndigits); in ecc_make_pub_key() 1596 const u64 *private_key, const u64 *public_key, in crypto_ecdh_shared_secret() argument 1606 if (!private_key || !public_key || !curve || in crypto_ecdh_shared_secret() 1622 ecc_swap_digits(public_key, pk->x, ndigits); in crypto_ecdh_shared_secret() 1623 ecc_swap_digits(&public_key[ndigits], pk->y, ndigits); in crypto_ecdh_shared_secret()
|
/kernel/linux/linux-5.10/drivers/crypto/ |
D | atmel-ecc.c | 44 const u8 *public_key; member 93 void *public_key; in atmel_ecdh_set_secret() local 98 kfree(ctx->public_key); in atmel_ecdh_set_secret() 100 ctx->public_key = NULL; in atmel_ecdh_set_secret() 123 public_key = kmalloc(ATMEL_ECC_PUBKEY_SIZE, GFP_KERNEL); in atmel_ecdh_set_secret() 124 if (!public_key) in atmel_ecdh_set_secret() 137 memcpy(public_key, &cmd->data[RSP_DATA_IDX], ATMEL_ECC_PUBKEY_SIZE); in atmel_ecdh_set_secret() 138 ctx->public_key = public_key; in atmel_ecdh_set_secret() 144 kfree(public_key); in atmel_ecdh_set_secret() 162 if (!ctx->public_key) in atmel_ecdh_generate_public_key() [all …]
|
/kernel/linux/linux-5.10/net/bluetooth/ |
D | ecdh_helper.c | 60 int compute_ecdh_secret(struct crypto_kpp *tfm, const u8 public_key[64], in compute_ecdh_secret() 81 swap_digits((u64 *)public_key, (u64 *)tmp, 4); /* x */ in compute_ecdh_secret() 82 swap_digits((u64 *)&public_key[32], (u64 *)&tmp[32], 4); /* y */ in compute_ecdh_secret() 168 int generate_ecdh_public_key(struct crypto_kpp *tfm, u8 public_key[64]) in generate_ecdh_public_key() 204 swap_digits((u64 *)tmp, (u64 *)public_key, 4); /* x */ in generate_ecdh_public_key() 205 swap_digits((u64 *)&tmp[32], (u64 *)&public_key[32], 4); /* y */ in generate_ecdh_public_key() 221 int generate_ecdh_keys(struct crypto_kpp *tfm, u8 public_key[64]) in generate_ecdh_keys() 229 return generate_ecdh_public_key(tfm, public_key); in generate_ecdh_keys()
|
D | ecdh_helper.h | 29 int generate_ecdh_public_key(struct crypto_kpp *tfm, u8 public_key[64]); 30 int generate_ecdh_keys(struct crypto_kpp *tfm, u8 public_key[64]);
|
/kernel/linux/linux-5.10/crypto/asymmetric_keys/ |
D | pkcs8_parser.c | 21 struct public_key *pub; 97 static struct public_key *pkcs8_parse(const void *data, size_t datalen) in pkcs8_parse() 100 struct public_key *pub; in pkcs8_parse() 106 ctx.pub = kzalloc(sizeof(struct public_key), GFP_KERNEL); in pkcs8_parse() 138 struct public_key *pub; in pkcs8_key_preparse()
|
D | public_key.c | 34 struct public_key *key = asymmetric_key->payload.data[asym_crypto]; in public_key_describe() 43 void public_key_free(struct public_key *key) in public_key_free() 68 software_key_determine_akcipher(const struct public_key *pkey, in software_key_determine_akcipher() 155 struct public_key *pkey = params->key->payload.data[asym_crypto]; in software_key_query() 214 const struct public_key *pkey = params->key->payload.data[asym_crypto]; in software_key_eds_op() 357 int public_key_verify_signature(const struct public_key *pkey, in public_key_verify_signature() 454 const struct public_key *pk = key->payload.data[asym_crypto]; in public_key_verify_signature_2()
|
D | x509_parser.h | 15 struct public_key *pub; /* Public key details */
|
D | Makefile | 13 obj-$(CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE) += public_key.o
|
D | x509_cert_parser.c | 74 cert->pub = kzalloc(sizeof(struct public_key), GFP_KERNEL); in x509_cert_parse()
|
/kernel/linux/linux-5.10/include/crypto/ |
D | public_key.h | 23 struct public_key { struct 34 extern void public_key_free(struct public_key *key); argument 84 int public_key_verify_signature(const struct public_key *pkey,
|
/kernel/linux/linux-5.10/arch/arm/crypto/ |
D | curve25519-glue.c | 68 u8 public_key[CURVE25519_KEY_SIZE]; in curve25519_compute_value() local 77 public_key, CURVE25519_KEY_SIZE); in curve25519_compute_value() 80 bp = public_key; in curve25519_compute_value()
|
/kernel/linux/linux-5.10/drivers/net/wireguard/ |
D | netlink.c | 359 u8 *public_key = NULL, *preshared_key = NULL; in set_peer() local 367 public_key = nla_data(attrs[WGPEER_A_PUBLIC_KEY]); in set_peer() 412 peer = wg_peer_create(wg, public_key, preshared_key); in set_peer() 547 u8 public_key[NOISE_PUBLIC_KEY_LEN]; in wg_set_device() local 557 if (curve25519_generate_public(public_key, private_key)) { in wg_set_device() 559 public_key); in wg_set_device()
|
D | peer.c | 22 const u8 public_key[NOISE_PUBLIC_KEY_LEN], in wg_peer_create() 41 public_key, preshared_key, peer); in wg_peer_create()
|
D | peer.h | 70 const u8 public_key[NOISE_PUBLIC_KEY_LEN],
|
/kernel/linux/linux-5.10/arch/x86/crypto/ |
D | curve25519-x86_64.c | 1445 u8 public_key[CURVE25519_KEY_SIZE]; in curve25519_compute_shared_secret() local 1455 public_key, CURVE25519_KEY_SIZE); in curve25519_compute_shared_secret() 1459 curve25519_arch(buf, secret, public_key); in curve25519_compute_shared_secret()
|
/kernel/linux/linux-5.10/Documentation/crypto/ |
D | asymmetric-keys.rst | 89 #include <crypto/public_key.h>
|
/kernel/linux/linux-5.10/drivers/scsi/qla2xxx/ |
D | qla_def.h | 4931 uint32_t public_key[0x41]; member
|
/kernel/linux/linux-5.10/ |
D | MAINTAINERS | 2858 F: include/crypto/public_key.h
|