HomeSort by relevance Sort by last modified time
    Searched full:pubkey (Results 1 - 25 of 198) sorted by null

1 2 3 4 5 6 7 8

  /cts/hostsidetests/appsecurity/certs/keysets/
README 7 openssl x509 -in cts-keyset-test-a.x509.pem -inform PEM -pubkey
8 openssl x509 -in cts-keyset-test-b.x509.pem -inform PEM -pubkey
9 openssl x509 -in cts-keyset-test-c.x509.pem -inform PEM -pubkey
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/ocsp/jcajce/
JcaRespID.java 21 public JcaRespID(PublicKey pubKey, DigestCalculator digCalc)
24 super(SubjectPublicKeyInfo.getInstance(pubKey.getEncoded()), digCalc);
  /external/vboot_reference/futility/
cmd_vbutil_key.c 73 VbPublicKey *pubkey; local
81 pubkey = PublicKeyReadKeyb(infile, algorithm, version);
82 if (pubkey) {
83 if (0 != PublicKeyWrite(outfile, pubkey)) {
87 free(pubkey);
108 VbPublicKey *pubkey; local
116 pubkey = PublicKeyRead(infile);
117 if (pubkey) {
119 printf("Algorithm: %" PRIu64 " %s\n", pubkey->algorithm,
120 (pubkey->algorithm < kNumAlgorithms
    [all...]
cmd_create.c 80 VbPublicKey *pubkey = 0; local
136 pubkey = PublicKeyAlloc(keyb_size, vb1_algorithm, opt_version);
137 if (!pubkey)
139 memcpy(GetPublicKeyData(pubkey), keyb_data, keyb_size);
143 if (0 != PublicKeyWrite(outfile, pubkey)) {
153 free(pubkey);
162 struct vb2_public_key *pubkey = 0; local
216 if (vb2_public_key_alloc(&pubkey, sig_alg)) {
231 pubkey_buf = vb2_public_key_packed_data(pubkey);
235 if (vb2_unpack_key_data(pubkey, pubkey_buf, keyb_size))
    [all...]
  /external/conscrypt/src/main/java/org/conscrypt/
ChainStrengthAnalyzer.java 69 Object pubkey = cert.getPublicKey(); local
70 if (pubkey instanceof RSAPublicKey) {
71 int modulusLength = ((RSAPublicKey) pubkey).getModulus().bitLength();
76 } else if (pubkey instanceof ECPublicKey) {
78 ((ECPublicKey) pubkey).getParams().getCurve().getField().getFieldSize();
83 } else if (pubkey instanceof DSAPublicKey) {
84 int pLength = ((DSAPublicKey) pubkey).getParams().getP().bitLength();
85 int qLength = ((DSAPublicKey) pubkey).getParams().getQ().bitLength();
93 throw new CertificateException("Rejecting unknown key class " + pubkey.getClass().getName());
OpenSSLECPublicKey.java 54 OpenSSLECPointContext pubKey = OpenSSLECPointContext.getInstance(
57 pubKey.getNativeRef(), null));
67 OpenSSLECPointContext pubKey = OpenSSLECPointContext.getInstance(
71 pubKey.getNativeRef(), null));
98 final OpenSSLECPointContext pubKey = new OpenSSLECPointContext(group,
101 return pubKey.getECPoint();
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
BasicAgreement.java 25 BigInteger calculateAgreement(CipherParameters pubKey);
  /external/curl/tests/data/
test604 19 --key curl_client_key --pubkey curl_client_key.pub -u %USER: sftp://%HOSTIP:%SSHPORT%PWD/not-a-valid-file-moooo --insecure
test605 19 --key curl_client_key --pubkey curl_client_key.pub -u %USER: scp://%HOSTIP:%SSHPORT%PWD/not-a-valid-file-moooo --insecure
test606 19 --key curl_client_key --pubkey curl_client_key.pub -u not-a-valid-user: sftp://%HOSTIP:%SSHPORT%PWD/not-a-valid-file-moooo --insecure
test607 19 --key curl_client_key --pubkey curl_client_key.pub -u not-a-valid-user: scp://%HOSTIP:%SSHPORT%PWD/not-a-valid-file-moooo --insecure
test630 20 --hostpubmd5 00000000000000000000000000000000 --key curl_client_key --pubkey curl_client_key.pub -u %USER: sftp://%HOSTIP:%SSHPORT%PWD/log/irrelevant-file --insecure
test631 20 --hostpubmd5 00000000000000000000000000000000 --key curl_client_key --pubkey curl_client_key.pub -u %USER: scp://%HOSTIP:%SSHPORT%PWD/log/irrelevant-file --insecure
test632 23 --hostpubmd5 00 --key curl_client_key --pubkey curl_client_key.pub -u %USER: sftp://%HOSTIP:%SSHPORT%PWD/log/irrelevant-file --insecure
test600 27 --key curl_client_key --pubkey curl_client_key.pub -u %USER: sftp://%HOSTIP:%SSHPORT%PWD/log/file600.txt --insecure
test601 27 --key curl_client_key --pubkey curl_client_key.pub -u %USER: scp://%HOSTIP:%SSHPORT%PWD/log/file601.txt --insecure
test602 24 --key curl_client_key --pubkey curl_client_key.pub -u %USER: -T log/file602.txt sftp://%HOSTIP:%SSHPORT%PWD/log/upload.602 --insecure
test603 24 --key curl_client_key --pubkey curl_client_key.pub -u %USER: -T log/file603.txt scp://%HOSTIP:%SSHPORT%PWD/log/upload.603 --insecure
test609 28 --key curl_client_key --pubkey curl_client_key.pub -u %USER: -Q "-mkdir %PWD/log/file609.txt" sftp://%HOSTIP:%SSHPORT%PWD/log/file609.txt --insecure
test616 26 --key curl_client_key --pubkey curl_client_key.pub -u %USER: sftp://%HOSTIP:%SSHPORT%PWD/log/file616.txt --insecure
test617 26 --key curl_client_key --pubkey curl_client_key.pub -u %USER: scp://%HOSTIP:%SSHPORT%PWD/log/file617.txt --insecure
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
IdentityScope2Test.java 32 static PublicKey pubKey;
36 pubKey = KeyPairGenerator.getInstance("DSA").genKeyPair().getPublic();
145 id.setPublicKey(pubKey);
149 id2.setPublicKey(pubKey);
164 id.setPublicKey(pubKey);
182 id.setPublicKey(pubKey);
195 id.setPublicKey(pubKey);
211 id.setPublicKey(pubKey);
213 Identity returnedId = sub.getIdentity(pubKey);
225 id.setPublicKey(pubKey);
    [all...]
  /external/wpa_supplicant_8/src/wps/
wps_attr_build.c 23 struct wpabuf *pubkey; local
39 pubkey = wpabuf_dup(wps->wps->dh_pubkey);
62 pubkey = wpabuf_dup(wps->wps->ap_nfc_dh_pubkey);
63 wps->dh_ctx = dh5_init_fixed(wps->dh_privkey, pubkey);
68 wps->dh_ctx = dh5_init(&wps->dh_privkey, &pubkey);
69 pubkey = wpabuf_zeropad(pubkey, 192);
71 if (wps->dh_ctx == NULL || wps->dh_privkey == NULL || pubkey == NULL) {
74 wpabuf_free(pubkey);
78 wpa_hexdump_buf(MSG_DEBUG, "WPS: DH own Public Key", pubkey);
    [all...]
  /external/v8/tools/testrunner/server/
status_handler.py 57 for pubkey in pubkey_list:
58 if server.IsTrusted(pubkey): continue
59 result = _StatusQuery(peer, [constants.GET_SIGNED_PUBKEY, pubkey])
71 def TryTransitiveTrust(peer, pubkey, server):
72 if _StatusQuery(peer, [constants.DO_YOU_TRUST, pubkey]):
73 result = _StatusQuery(peer, [constants.GET_SIGNED_PUBKEY, pubkey])
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/netscape/
NetscapeCertRequest.java 53 PublicKey pubkey ; field in class:NetscapeCertRequest
118 pubkey = KeyFactory.getInstance(keyAlg.getAlgorithm().getId(), "BC")
137 pubkey = pub_key;
141 //content_der.add(new SubjectPublicKeyInfo(sigAlg, new RSAPublicKeyStructure(pubkey.getModulus(), pubkey.getPublicExponent()).getDERObject()));
186 return pubkey;
191 pubkey = value;
208 sig.initVerify(pubkey);
264 baos.write(pubkey.getEncoded());

Completed in 3052 milliseconds

1 2 3 4 5 6 7 8