Searched refs:pubkey (Results 26 - 50 of 100) sorted by relevance

1234

/external/curl/docs/cmdline-opts/
H A Dpubkey.d1 Long: pubkey
/external/wpa_supplicant_8/hostapd/src/wps/
H A Dwps_common.c64 struct wpabuf *pubkey, *dh_shared; local
75 pubkey = wps->registrar ? wps->dh_pubkey_e : wps->dh_pubkey_r;
76 if (pubkey == NULL) {
82 wpa_hexdump_buf(MSG_DEBUG, "WPS: DH peer Public Key", pubkey);
83 dh_shared = dh5_derive_shared(wps->dh_ctx, pubkey, wps->dh_privkey);
413 const struct wpabuf *pubkey,
422 if (wps_build_oob_dev_pw(data, dev_pw_id, pubkey,
624 struct wpabuf * wps_nfc_token_build(int ndef, int id, struct wpabuf *pubkey, argument
629 if (pubkey == NULL || dev_pw == NULL)
632 ret = wps_build_nfc_pw_token(id, pubkey, dev_p
412 wps_build_nfc_pw_token(u16 dev_pw_id, const struct wpabuf *pubkey, const struct wpabuf *dev_pw) argument
646 wps_nfc_gen_dh(struct wpabuf **pubkey, struct wpabuf **privkey) argument
671 wps_nfc_token_gen(int ndef, int *id, struct wpabuf **pubkey, struct wpabuf **privkey, struct wpabuf **dev_pw) argument
[all...]
H A Dwps.h871 const u8 *addr, struct wpabuf *pubkey);
879 const struct wpabuf *pubkey,
881 struct wpabuf * wps_nfc_token_build(int ndef, int id, struct wpabuf *pubkey,
883 int wps_nfc_gen_dh(struct wpabuf **pubkey, struct wpabuf **privkey);
884 struct wpabuf * wps_nfc_token_gen(int ndef, int *id, struct wpabuf **pubkey,
/external/wpa_supplicant_8/src/wps/
H A Dwps_common.c64 struct wpabuf *pubkey, *dh_shared; local
75 pubkey = wps->registrar ? wps->dh_pubkey_e : wps->dh_pubkey_r;
76 if (pubkey == NULL) {
82 wpa_hexdump_buf(MSG_DEBUG, "WPS: DH peer Public Key", pubkey);
83 dh_shared = dh5_derive_shared(wps->dh_ctx, pubkey, wps->dh_privkey);
413 const struct wpabuf *pubkey,
422 if (wps_build_oob_dev_pw(data, dev_pw_id, pubkey,
624 struct wpabuf * wps_nfc_token_build(int ndef, int id, struct wpabuf *pubkey, argument
629 if (pubkey == NULL || dev_pw == NULL)
632 ret = wps_build_nfc_pw_token(id, pubkey, dev_p
412 wps_build_nfc_pw_token(u16 dev_pw_id, const struct wpabuf *pubkey, const struct wpabuf *dev_pw) argument
646 wps_nfc_gen_dh(struct wpabuf **pubkey, struct wpabuf **privkey) argument
671 wps_nfc_token_gen(int ndef, int *id, struct wpabuf **pubkey, struct wpabuf **privkey, struct wpabuf **dev_pw) argument
[all...]
H A Dwps.h871 const u8 *addr, struct wpabuf *pubkey);
879 const struct wpabuf *pubkey,
881 struct wpabuf * wps_nfc_token_build(int ndef, int id, struct wpabuf *pubkey,
883 int wps_nfc_gen_dh(struct wpabuf **pubkey, struct wpabuf **privkey);
884 struct wpabuf * wps_nfc_token_gen(int ndef, int *id, struct wpabuf **pubkey,
/external/wpa_supplicant_8/wpa_supplicant/src/wps/
H A Dwps_common.c64 struct wpabuf *pubkey, *dh_shared; local
75 pubkey = wps->registrar ? wps->dh_pubkey_e : wps->dh_pubkey_r;
76 if (pubkey == NULL) {
82 wpa_hexdump_buf(MSG_DEBUG, "WPS: DH peer Public Key", pubkey);
83 dh_shared = dh5_derive_shared(wps->dh_ctx, pubkey, wps->dh_privkey);
413 const struct wpabuf *pubkey,
422 if (wps_build_oob_dev_pw(data, dev_pw_id, pubkey,
624 struct wpabuf * wps_nfc_token_build(int ndef, int id, struct wpabuf *pubkey, argument
629 if (pubkey == NULL || dev_pw == NULL)
632 ret = wps_build_nfc_pw_token(id, pubkey, dev_p
412 wps_build_nfc_pw_token(u16 dev_pw_id, const struct wpabuf *pubkey, const struct wpabuf *dev_pw) argument
646 wps_nfc_gen_dh(struct wpabuf **pubkey, struct wpabuf **privkey) argument
671 wps_nfc_token_gen(int ndef, int *id, struct wpabuf **pubkey, struct wpabuf **privkey, struct wpabuf **dev_pw) argument
[all...]
/external/v8/tools/testrunner/server/
H A Dmain.py141 if self.IsTrusted(p.pubkey):
147 status_handler.TryTransitiveTrust(p2, p.pubkey, self)
189 if peer.pubkey == fingerprint:
218 pubkey = data[1]
227 if not signatures.VerifySignature(filename, pubkey, signature,
/external/boringssl/src/ssl/
H A Dssl_cert.cc261 UniquePtr<EVP_PKEY> pubkey = ssl_cert_parse_pubkey(&cert_cbs); local
262 if (!pubkey) {
267 if (!ssl_is_key_type_supported(pubkey->type)) {
274 if (pubkey->type == EVP_PKEY_EC &&
282 !ssl_compare_public_and_private_key(pubkey.get(), privkey)) {
409 UniquePtr<EVP_PKEY> pubkey; local
420 pubkey = ssl_cert_parse_pubkey(&certificate);
421 if (!pubkey) {
443 *out_pubkey = std::move(pubkey);
529 int ssl_compare_public_and_private_key(const EVP_PKEY *pubkey, argument
574 UniquePtr<EVP_PKEY> pubkey = ssl_cert_parse_pubkey(&cert_cbs); local
[all...]
/external/scapy/scapy/layers/tls/
H A Dkeyexchange.py123 sig_len = s.client_certs[0].pubKey.pubkey.key_size // 8
326 pubkey = s.server_kx_privkey.public_key()
327 y = pubkey.public_numbers().y
328 self.dh_Ys = pkcs_i2osp(y, pubkey.key_size//8)
339 XXX Check that the pubkey received is in the group.
570 pubkey = s.server_kx_privkey.public_key()
571 self.point = pubkey.public_numbers().encode_point()
583 XXX Check that the pubkey received is on the curve.
643 pubNum = k.pubkey.public_numbers()
646 self.rsamod = pkcs_i2osp(pubNum.n, k.pubkey
[all...]
/external/autotest/server/site_tests/firmware_UpdateFirmwareDataKeyVersion/files/
H A Dcommon.sh99 local pubkey=$3
108 --datapubkey "${pubkey}.vbpubk" \
/external/autotest/server/site_tests/firmware_UpdateKernelDataKeyVersion/files/
H A Dcommon.sh99 local pubkey=$3
108 --datapubkey "${pubkey}.vbpubk" \
/external/autotest/server/site_tests/firmware_UpdateKernelSubkeyVersion/files/
H A Dcommon.sh99 local pubkey=$3
108 --datapubkey "${pubkey}.vbpubk" \
/external/curl/lib/vtls/
H A Dcyassl.c542 curl_asn1Element *pubkey; local
561 pubkey = &x509_parsed.subjectPublicKeyInfo;
562 if(!pubkey->header || pubkey->end <= pubkey->header) {
569 (const unsigned char *)pubkey->header,
570 (size_t)(pubkey->end - pubkey->header));
/external/vboot_reference/scripts/keygeneration/
H A Dcommon.sh100 local pubkey=$3
109 --datapubkey "${pubkey}.vbpubk" \
/external/boringssl/src/crypto/x509v3/
H A Dv3_skey.c129 pk = ctx->subject_req->req_info->pubkey->public_key;
/external/syslinux/gpxe/src/include/gpxe/
H A Dtls.h96 struct pubkey_algorithm *pubkey; member in struct:tls_cipherspec
/external/v8/tools/testrunner/network/
H A Dnetwork_execution.py103 pubkey = data[1]
104 if not pubkey: raise RuntimeError("Received empty public key")
105 self.pubkey_fingerprint = pubkey
179 pubkey=self.pubkey_fingerprint)
/external/conscrypt/platform/src/main/java/org/conscrypt/ct/
H A DCTLogStoreImpl.java227 PublicKey pubkey;
229 pubkey = InternalUtil.readPublicKeyPem(new ByteArrayInputStream(
239 return new CTLogInfo(pubkey, description, url);
/external/autotest/client/site_tests/login_RemoteOwnership/
H A Dlogin_RemoteOwnership.py63 pubkey=new_pub,
/external/curl/lib/
H A Dssh.h150 ssh_key pubkey; member in struct:ssh_conn
/external/wpa_supplicant_8/hostapd/src/crypto/
H A Dcrypto_openssl.c646 struct wpabuf *pubkey = NULL, *privkey = NULL; local
669 pubkey = wpabuf_alloc(publen);
670 if (pubkey == NULL)
677 BN_bn2bin(dh->pub_key, wpabuf_put(pubkey, publen));
681 *publ = pubkey;
685 wpabuf_clear_free(pubkey);
691 struct wpabuf *pubkey = NULL, *privkey = NULL;
717 pubkey = wpabuf_alloc(publen);
718 if (!pubkey)
725 BN_bn2bin(pub_key, wpabuf_put(pubkey, puble
1773 const EC_POINT *pubkey; local
[all...]
/external/wpa_supplicant_8/src/crypto/
H A Dcrypto_openssl.c646 struct wpabuf *pubkey = NULL, *privkey = NULL; local
669 pubkey = wpabuf_alloc(publen);
670 if (pubkey == NULL)
677 BN_bn2bin(dh->pub_key, wpabuf_put(pubkey, publen));
681 *publ = pubkey;
685 wpabuf_clear_free(pubkey);
691 struct wpabuf *pubkey = NULL, *privkey = NULL;
717 pubkey = wpabuf_alloc(publen);
718 if (!pubkey)
725 BN_bn2bin(pub_key, wpabuf_put(pubkey, puble
1773 const EC_POINT *pubkey; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/crypto/
H A Dcrypto_openssl.c646 struct wpabuf *pubkey = NULL, *privkey = NULL; local
669 pubkey = wpabuf_alloc(publen);
670 if (pubkey == NULL)
677 BN_bn2bin(dh->pub_key, wpabuf_put(pubkey, publen));
681 *publ = pubkey;
685 wpabuf_clear_free(pubkey);
691 struct wpabuf *pubkey = NULL, *privkey = NULL;
717 pubkey = wpabuf_alloc(publen);
718 if (!pubkey)
725 BN_bn2bin(pub_key, wpabuf_put(pubkey, puble
1773 const EC_POINT *pubkey; local
[all...]
/external/boringssl/src/crypto/x509/
H A Dx_pubkey.c77 X509_PUBKEY *pubkey = (X509_PUBKEY *)*pval; local
78 EVP_PKEY_free(pubkey->pkey);
/external/scapy/scapy/layers/tls/crypto/
H A Dpkcs1.py147 return self.pubkey.encrypt(m, pad)
157 self.pubkey.verify(S, M, pad, h)

Completed in 627 milliseconds

1234