HomeSort by relevance Sort by last modified time
    Searched refs:privatekey (Results 1 - 8 of 8) sorted by null

  /cts/hostsidetests/devicepolicy/app/CertInstaller/src/com/android/cts/certinstaller/
CertInstallerReceiver.java 31 import java.security.PrivateKey;
126 PrivateKey privatekey = kf.generatePrivate(keySpec); local
138 sendResult(context, dpm.installKeyPair(null, privatekey, certificate, alias),
  /cts/hostsidetests/devicepolicy/app/DelegateApp/src/com/android/cts/delegate/
CertInstallDelegateTest.java 42 import java.security.PrivateKey;
162 PrivateKey privatekey = kf.generatePrivate(keySpec); local
168 mDpm.installKeyPair(null, privatekey, certificate, alias));
  /external/boringssl/src/ssl/
ssl_privkey.cc 92 EVP_PKEY_free(cert->privatekey);
94 cert->privatekey = pkey;
139 return ssl->cert->privatekey != NULL || ssl->cert->key_method != NULL;
217 if (!setup_ctx(ssl, ctx.get(), ssl->cert->privatekey, sigalg, 0 /* sign */) ||
254 RSA *rsa = EVP_PKEY_get0_RSA(ssl->cert->privatekey);
ssl_cert.cc 166 if (cert->privatekey != NULL) {
167 EVP_PKEY_up_ref(cert->privatekey);
168 ret->privatekey = cert->privatekey;
220 EVP_PKEY_free(cert->privatekey);
221 cert->privatekey = NULL;
327 EVP_PKEY_free(cert->privatekey);
328 cert->privatekey = privkey;
341 switch (check_leaf_cert_and_privkey(buffer.get(), cert->privatekey)) {
348 EVP_PKEY_free(cert->privatekey);
    [all...]
ssl_lib.cc     [all...]
handshake_client.cc     [all...]
internal.h 1704 EVP_PKEY *privatekey; member in struct:bssl::CERT
    [all...]
  /packages/apps/CertInstaller/src/com/android/certinstaller/
CertInstaller.java 263 byte[] privatekey = map.get(key);
264 if (privatekey != null) {
265 Log.d(TAG, "found matched key: " + privatekey);
269 mCredentials.setPrivateKey(privatekey);
291 byte[] privatekey = mCredentials.getData(Credentials.EXTRA_PRIVATE_KEY);
294 map.put(key, privatekey);
296 Log.d(TAG, "save privatekey: " + key + " --> #keys:" + map.size());

Completed in 96 milliseconds