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

  /frameworks/base/wifi/java/android/net/wifi/passpoint/
WifiPasspointPolicy.java 189 phase2 = null, privateKey = null;
217 privateKey = tempField;
260 String privatekey = null; local
263 privatekey = "keystore://" + Credentials.WIFI + "HS20" + Credentials.USER_PRIVATE_KEY + clientCertPath;
266 Log.d(TAG, "privatekey:" + privatekey);
268 if (privatekey != null && usercertificate != null) {
269 setValue.invoke(privateKey.get(wfg), privatekey); local
  /packages/apps/CertInstaller/src/com/android/certinstaller/
CertInstaller.java 233 byte[] privatekey = map.get(key);
234 if (privatekey != null) {
235 Log.d(TAG, "found matched key: " + privatekey);
239 mCredentials.setPrivateKey(privatekey);
261 byte[] privatekey = mCredentials.getData(Credentials.EXTRA_PRIVATE_KEY);
264 map.put(key, privatekey);
266 Log.d(TAG, "save privatekey: " + key + " --> #keys:" + map.size());
  /cts/hostsidetests/devicepolicy/app/CertInstaller/src/com/android/cts/certinstaller/
CertInstallerActivity.java 32 import java.security.PrivateKey;
129 PrivateKey privatekey = kf.generatePrivate(keySpec); local
141 sendResult(dpm.installKeyPair(null, privatekey, certificate, alias), null);
  /external/boringssl/src/ssl/
ssl_rsa.c 182 EVP_PKEY_free(c->pkeys[i].privatekey);
183 c->pkeys[i].privatekey = EVP_PKEY_up_ref(pkey);
343 if (c->pkeys[i].privatekey != NULL) {
346 if (!EVP_PKEY_is_opaque(c->pkeys[i].privatekey) &&
347 !X509_check_private_key(x, c->pkeys[i].privatekey)) {
351 EVP_PKEY_free(c->pkeys[i].privatekey);
352 c->pkeys[i].privatekey = NULL;
ssl_cert.c 216 if (cpk->privatekey != NULL) {
217 rpk->privatekey = EVP_PKEY_up_ref(cpk->privatekey);
290 if (cpk->privatekey) {
291 EVP_PKEY_free(cpk->privatekey);
292 cpk->privatekey = NULL;
ssl_lib.c 808 if (ctx->cert->key->privatekey == NULL) {
815 ctx->cert->key->privatekey);
837 if (ssl->cert->key->privatekey == NULL) {
844 ssl->cert->key->privatekey);
    [all...]
internal.h 500 EVP_PKEY *privatekey; member in struct:cert_pkey_st
    [all...]
s3_clnt.c     [all...]
s3_srvr.c     [all...]
  /external/conscrypt/src/main/native/
org_conscrypt_NativeCrypto.cpp 7827 EVP_PKEY* privatekey = SSL_get_privatekey(ssl); local
    [all...]

Completed in 2929 milliseconds