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

1 2 3 4 5 6

  /packages/apps/KeyChain/tests/
AndroidManifest.xml 18 package="com.android.keychain.tests">
24 adb shell am startservice -n com.android.keychain.tests/.KeyChainServiceTest
27 adb shell am start -n com.android.keychain.tests/com.android.keychain.tests.KeyChainTestActivity
30 <service android:name="com.android.keychain.tests.KeyChainServiceTest">
32 <action android:name="com.android.keychain.tests.KeyChainServiceTest"/>
35 <activity android:name="com.android.keychain.tests.KeyChainTestActivity">
37 <action android:name="com.android.keychain.tests.KeyChainTestActivity"/>
40 <activity android:name="com.android.keychain.tests.KeyChainSocketTestActivity">
42 <action android:name="com.android.keychain.tests.KeyChainSocketTestActivity"/
    [all...]
Android.mk 21 LOCAL_STATIC_JAVA_LIBRARIES := com.android.keychain.tests.support core-tests-support mockwebserver
  /cts/tests/tests/keystore/src/android/keystore/cts/
KeyChainTest.java 21 import android.security.KeyChain;
29 assertFalse("DSA must not be supported", KeyChain.isKeyAlgorithmSupported("DSA"));
30 assertTrue("EC must be supported", KeyChain.isKeyAlgorithmSupported("EC"));
31 assertTrue("RSA must be supported", KeyChain.isKeyAlgorithmSupported("RSA"));
37 KeyChain.getPrivateKey(null, null);
39 + "KeyChain.getPrivateKey(Context, String)");
47 KeyChain.getPrivateKey(getContext(), null);
49 + "KeyChain.getPrivateKey(Context, String).");
57 KeyChain.getPrivateKey(null, "");
59 + "KeyChain.getPrivateKey(Context, String).")
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/util/mac/
keychain_helper.py 18 Returns True if the keychain is locked, or if there is an error determining
19 the keychain state.
29 Returns True if the keychain will lock itself have a period of time.
31 This method will trigger a blocking, modal dialog if the keychain is
34 command = ("/usr/bin/security", "show-keychain-info")
41 Returns True if the keychain entry associated with |service_name| and
44 This method will trigger a blocking, modal dialog if the keychain is
determine_if_keychain_is_locked.c 5 // This program determines whether the default OSX Keychain is unlocked without
8 // 0 - The default keychain is unlocked.
9 // 1 - The default keychain is locked.
  /packages/apps/KeyChain/
AndroidManifest.xml 3 package="com.android.keychain"
9 <service android:name="com.android.keychain.KeyChainService">
14 <activity android:name="com.android.keychain.KeyChainActivity"
18 <action android:name="com.android.keychain.CHOOSER"/>
Android.mk 23 LOCAL_PACKAGE_NAME := KeyChain
  /packages/apps/KeyChain/src/com/android/keychain/
KeyChainBroadcastReceiver.java 2 package com.android.keychain;
  /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...]
  /development/samples/KeyChainDemo/
_index.html 1 <p>This is a demo application highlighting how to use the KeyChain APIs introduced in API Level 14.</p>
11 <li><a href="src/com/example/android/keychain/KeyChainDemoActivity.html"><code>KeyChainDemoActivity</code></a>
14 <li><a href="src/com/example/android/keychain/SecureWebServer.html"><code>SecureWebServer</code></a>
16 <li><a href="src/com/example/android/keychain/SecureWebServerService.html"><code>SecureWebServerService</code></a>
20 <p>If you are developing an application that uses the KeyChain APIs,
40 For more information about using the KeyChain API, see the
41 <a href="../../../reference/android/security/KeyChain.html">
42 <code>android.security.KeyChain</code></a>
AndroidManifest.xml 18 package="com.example.android.keychain"
30 android:name="com.example.android.keychain.KeyChainDemoActivity"
41 <service android:name="com.example.android.keychain.SecureWebServerService" />
  /packages/apps/KeyChain/support/
Android.mk 19 LOCAL_SRC_FILES := src/com/android/keychain/tests/support/IKeyChainServiceTestSupport.aidl
20 LOCAL_MODULE := com.android.keychain.tests.support
27 LOCAL_STATIC_JAVA_LIBRARIES := com.android.keychain.tests.support
AndroidManifest.xml 18 package="com.android.keychain.tests.support"
21 <service android:name="com.android.keychain.tests.support.KeyChainServiceTestSupport">
23 <action android:name="com.android.keychain.tests.support.IKeyChainServiceTestSupport"/>
  /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...]
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
CertificateRequestor.java 24 import android.security.KeyChain;
28 * A headless Activity which simply calls into the framework {@link KeyChain} service to select
49 KeyChain.choosePrivateKeyAlias(
  /external/clang/test/Analysis/
cxx-method-names.cpp 8 void free(); // malloc checker, keychain checker
  /external/libchrome/crypto/
apple_keychain.h 25 // See Keychain Services documentation for function documentation, as these call
26 // through directly to their Keychain Services equivalents (Foo ->
47 virtual OSStatus AddGenericPassword(SecKeychainRef keychain,
85 virtual OSStatus AddInternetPassword(SecKeychainRef keychain,
  /packages/apps/CertInstaller/src/com/android/certinstaller/
CertInstallerMain.java 27 import android.security.KeyChain;
59 MIME_MAPPINGS.put("application/x-x509-ca-cert", KeyChain.EXTRA_CERTIFICATE);
60 MIME_MAPPINGS.put("application/x-x509-user-cert", KeyChain.EXTRA_CERTIFICATE);
61 MIME_MAPPINGS.put("application/x-x509-server-cert", KeyChain.EXTRA_CERTIFICATE);
62 MIME_MAPPINGS.put("application/x-pem-file", KeyChain.EXTRA_CERTIFICATE);
63 MIME_MAPPINGS.put("application/pkix-cert", KeyChain.EXTRA_CERTIFICATE);
64 MIME_MAPPINGS.put("application/x-pkcs12", KeyChain.EXTRA_PKCS12);
101 // Either way, we use KeyChain.EXTRA_NAME as the default name if available.
105 && (bundle.containsKey(KeyChain.EXTRA_NAME)
CredentialHelper.java 27 import android.security.KeyChain;
86 String name = bundle.getString(KeyChain.EXTRA_NAME);
87 bundle.remove(KeyChain.EXTRA_NAME);
101 parseCert(getData(KeyChain.EXTRA_CERTIFICATE));
107 outStates.putString(KeyChain.EXTRA_NAME, mName);
128 mName = savedStates.getString(KeyChain.EXTRA_NAME);
186 return mBundle.containsKey(KeyChain.EXTRA_PKCS12);
226 mBundle.put(KeyChain.EXTRA_PKCS12, data);
396 keystore.load(new ByteArrayInputStream(getData(KeyChain.EXTRA_PKCS12)),
  /packages/apps/KeyChain/support/src/com/android/keychain/tests/support/
KeyChainServiceTestSupport.java 17 package com.android.keychain.tests.support;
23 import android.security.KeyChain;
72 KeyChain.KeyChainConnection connection = null;
74 connection = KeyChain.bind(KeyChainServiceTestSupport.this);
  /frameworks/base/keystore/java/android/security/
KeyChainAliasCallback.java 22 * KeyChain#choosePrivateKeyAlias}.
  /frameworks/base/services/core/java/com/android/server/updates/
CertPinInstallReceiver.java 22 super("/data/misc/keychain/", "pins", "metadata/", "version");
  /prebuilts/go/darwin-x86/src/crypto/x509/
root_darwin.go 16 cmd := exec.Command("/usr/bin/security", "find-certificate", "-a", "-p", "/System/Library/Keychains/SystemRootCertificates.keychain")
  /prebuilts/go/linux-x86/src/crypto/x509/
root_darwin.go 16 cmd := exec.Command("/usr/bin/security", "find-certificate", "-a", "-p", "/System/Library/Keychains/SystemRootCertificates.keychain")
  /frameworks/base/docs/html/sdk/api_diff/23/changes/
android.security.KeyChain.html 10 android.security.KeyChain
74 Class android.security.<A HREF="../../../../reference/android/security/KeyChain.html" target="_top"><font size="+2"><code>KeyChain</code></font></A>
86 <A NAME="android.security.KeyChain.choosePrivateKeyAlias_added(android.app.Activity, android.security.KeyChainAliasCallback, java.lang.String[], java.security.Principal[], android.net.Uri, java.lang.String)"></A>
87 <nobr><code>void</code>&nbsp;<A HREF="../../../../reference/android/security/KeyChain.html#choosePrivateKeyAlias(android.app.Activity, android.security.KeyChainAliasCallback, java.lang.String[], java.security.Principal[], android.net.Uri, java.lang.String)" target="_top"><code>choosePrivateKeyAlias</code></A>(<code>Activity,</nobr> KeyChainAliasCallback<nobr>,</nobr> String[]<nobr>,</nobr> Principal[]<nobr>,</nobr> Uri<nobr>,</nobr> String<nobr><nobr></code>)</nobr>
101 <A NAME="android.security.KeyChain.isBoundKeyAlgorithm_changed(java.lang.String)"></A>
102 <nobr><code>boolean</code>&nbsp;<A HREF="../../../../reference/android/security/KeyChain.html#isBoundKeyAlgorithm(java.lang.String)" target="_top"><code>isBoundKeyAlgorithm</code></A>(<code>String</code>) </nobr>

Completed in 904 milliseconds

1 2 3 4 5 6