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

  /cts/tests/tests/keystore/src/android/keystore/cts/
KeyChainTest.java 20 import android.security.KeyChain;
25 assertTrue("DSA must be supported", KeyChain.isKeyAlgorithmSupported("DSA"));
26 assertTrue("EC must be supported", KeyChain.isKeyAlgorithmSupported("EC"));
27 assertTrue("RSA must be supported", KeyChain.isKeyAlgorithmSupported("RSA"));
39 KeyChain.isBoundKeyAlgorithm("RSA");
43 KeyChain.isBoundKeyAlgorithm("RSA"));
47 KeyChain.isBoundKeyAlgorithm("DSA");
48 KeyChain.isBoundKeyAlgorithm("EC");
  /build/target/product/
core.mk 40 KeyChain \
  /development/samples/KeyChainDemo/src/com/example/android/keychain/
KeyChainDemoActivity.java 17 package com.example.android.keychain;
25 import android.security.KeyChain;
45 public static final String PKCS12_FILENAME = "keychain.p12";
64 private static final String KEYCHAIN_PREF = "keychain";
69 // Request code used when starting the activity using the KeyChain install
228 byte[] keychain = new byte[bis.available()];
229 bis.read(keychain);
231 Intent installIntent = KeyChain.createInstallIntent();
232 installIntent.putExtra(KeyChain.EXTRA_PKCS12, keychain);
    [all...]
  /external/chromium_org/net/android/java/src/org/chromium/net/
AndroidNetworkLibrary.java 10 import android.security.KeyChain;
48 // TODO(digit): Use KeyChain official extra values to pass the public and private
50 // from the platform sources, since there are no official KeyChain.EXTRA_XXX definitions
53 Intent intent = KeyChain.createInstallIntent();
67 * PKCS#12 keychain) through the system's CertInstaller activity.
71 * @param data certificate/keychain data bytes.
75 * CertInstaller activity, not that the certificate/keychain was properly
81 Intent intent = KeyChain.createInstallIntent();
87 intent.putExtra(KeyChain.EXTRA_CERTIFICATE, data);
91 intent.putExtra(KeyChain.EXTRA_PKCS12, data)
    [all...]
X509Util.java 14 import android.security.KeyChain;
55 if (intent.getAction().equals(KeyChain.ACTION_STORAGE_CHANGED)) {
227 new IntentFilter(KeyChain.ACTION_STORAGE_CHANGED));
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
SSLClientCertificateRequest.java 10 import android.security.KeyChain;
104 /** Implementation of CertAsyncTask for the system KeyChain API. */
124 return sLocalKeyStore.createKey(KeyChain.getPrivateKey(mContext, alias));
137 return KeyChain.getCertificateChain(mContext, alias);
179 * The system KeyChain API will call us back on the alias() method, passing the alias of the
261 KeyChain.choosePrivateKeyAlias(activity, callback, keyTypes, principalsForCallback,
  /device/google/atv/products/
atv_base.mk 69 KeyChain \
  /development/samples/Vault/src/com/example/android/vault/
VaultProvider.java 38 import android.security.KeyChain;
133 mHardwareBacked = KeyChain.isBoundKeyAlgorithm("RSA");

Completed in 172 milliseconds