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

  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
CertificateRequestor.java 23 import android.security.KeyChain;
27 * A headless Activity which simply calls into the framework {@link KeyChain} service to select
47 KeyChain.choosePrivateKeyAlias(
  /packages/apps/KeyChain/tests/src/com/android/keychain/tests/
KeyChainTestActivity.java 17 package com.android.keychain.tests;
24 import android.security.KeyChain;
51 * Simple activity based test that exercises the KeyChain API
107 KeyChain.getPrivateKey(null, null);
114 log("KeyChain failed as expected with null argument.");
118 KeyChain.getPrivateKey(this, null);
125 log("KeyChain failed as expected with null argument.");
129 KeyChain.getPrivateKey(null, "");
136 log("KeyChain failed as expected with null argument.");
140 KeyChain.getPrivateKey(this, "")
    [all...]
  /frameworks/base/keystore/java/android/security/
KeyChain.java 44 * The {@code KeyChain} class provides access to private keys and
47 * <p>Applications accessing the {@code KeyChain} normally go through
81 public final class KeyChain {
83 private static final String TAG = "KeyChain";
88 public static final String ACCOUNT_TYPE = "com.android.keychain";
93 private static final String ACTION_CHOOSER = "com.android.keychain.CHOOSER";
360 * Returns {@code true} if the current device's {@code KeyChain} supports a
369 * Returns {@code true} if the current device's {@code KeyChain} binds any
398 * @see KeyChain#bind
  /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...]
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/15/
android.jar 
  /prebuilts/sdk/18/
android.jar 

Completed in 1244 milliseconds