Searched refs:keystore (Results 1 - 25 of 64) sorted by relevance

123

/frameworks/base/keystore/java/android/security/keystore/
H A DKeyStoreCryptoOperation.java17 package android.security.keystore;
H A DKeyStoreConnectException.java17 package android.security.keystore;
22 * Indicates a communications error with keystore service.
28 super("Failed to communicate with keystore service");
H A DAndroidKeyStorePrivateKey.java17 package android.security.keystore;
H A DAndroidKeyStoreSecretKey.java17 package android.security.keystore;
H A DDeviceIdAttestationException.java17 package android.security.keystore;
H A DKeyExpiredException.java17 package android.security.keystore;
H A DKeyNotYetValidException.java17 package android.security.keystore;
H A DKeyPermanentlyInvalidatedException.java17 package android.security.keystore;
H A DUserNotAuthenticatedException.java17 package android.security.keystore;
H A DAndroidKeyStoreLoadStoreParameter.java17 package android.security.keystore;
H A DKeyStoreCryptoOperationStreamer.java17 package android.security.keystore;
H A DUtils.java17 package android.security.keystore;
H A DAndroidKeyStoreECPrivateKey.java17 package android.security.keystore;
24 * EC private key (instance of {@link PrivateKey} and {@link ECKey}) backed by keystore.
H A DAndroidKeyStoreRSAPrivateKey.java17 package android.security.keystore;
24 * RSA private key (instance of {@link PrivateKey} and {@link RSAKey}) backed by keystore.
H A DAndroidKeyStoreECPublicKey.java17 package android.security.keystore;
24 * {@link ECPublicKey} backed by keystore.
H A DAndroidKeyStorePublicKey.java17 package android.security.keystore;
H A DAndroidKeyStoreRSAPublicKey.java17 package android.security.keystore;
H A DAndroidKeyStoreKey.java17 package android.security.keystore;
H A DKeyStoreCryptoOperationUtils.java17 package android.security.keystore;
93 * Returns the requested number of random bytes to mix into keystore/keymaster RNG.
H A DAndroidKeyStoreRSASignatureSpi.java17 package android.security.keystore;
/frameworks/base/keystore/java/android/security/
H A DCredentials.java224 public static boolean deleteAllTypesForAlias(KeyStore keystore, String alias) { argument
225 return deleteAllTypesForAlias(keystore, alias, KeyStore.UID_SELF);
233 public static boolean deleteAllTypesForAlias(KeyStore keystore, String alias, int uid) { argument
238 return deletePrivateKeyTypeForAlias(keystore, alias, uid)
239 & deleteSecretKeyTypeForAlias(keystore, alias, uid)
240 & deleteCertificateTypesForAlias(keystore, alias, uid);
248 public static boolean deleteCertificateTypesForAlias(KeyStore keystore, String alias) { argument
249 return deleteCertificateTypesForAlias(keystore, alias, KeyStore.UID_SELF);
257 public static boolean deleteCertificateTypesForAlias(KeyStore keystore, String alias, int uid) { argument
262 return keystore
270 deletePrivateKeyTypeForAlias(KeyStore keystore, String alias) argument
278 deletePrivateKeyTypeForAlias(KeyStore keystore, String alias, int uid) argument
286 deleteSecretKeyTypeForAlias(KeyStore keystore, String alias) argument
294 deleteSecretKeyTypeForAlias(KeyStore keystore, String alias, int uid) argument
[all...]
H A DKeyStoreParameter.java22 import android.security.keystore.KeyProtection;
30 * <a href="{@docRoot}training/articles/keystore.html">Android KeyStore
86 * <a href="{@docRoot}training/articles/keystore.html">Android KeyStore
H A DKeyPairGeneratorSpec.java23 import android.security.keystore.KeyGenParameterSpec;
24 import android.security.keystore.KeyProperties;
39 * <a href="{@docRoot}training/articles/keystore.html">Android KeyStore
87 * to unlock or initialize the Android keystore facility.
102 * keystore
255 * <a href="{@docRoot}training/articles/keystore.html">Android KeyStore
/frameworks/base/core/java/org/apache/http/conn/ssl/
H A DSSLSocketFactory.java78 * keytool -import -alias "my server cert" -file server.crt -keystore my.truststore
84 * a {@link KeyStore keystore} file containg a private key/public certificate
93 * Use the following sequence of actions to generate a keystore file
99 * <pre>keytool -genkey -v -alias "my client key" -validity 365 -keystore my.keystore</pre>
100 * For simplicity use the same password for the key as that of the keystore
106 * <pre>keytool -certreq -alias "my client key" -file mycertreq.csr -keystore my.keystore</pre>
119 * <pre>keytool -import -alias "my trusted ca" -file caroot.crt -keystore my.keystore</pr
182 SSLSocketFactory( String algorithm, final KeyStore keystore, final String keystorePassword, final KeyStore truststore, final SecureRandom random, final HostNameResolver nameResolver) argument
209 SSLSocketFactory( final KeyStore keystore, final String keystorePassword, final KeyStore truststore) argument
218 SSLSocketFactory(final KeyStore keystore, final String keystorePassword) argument
255 createKeyManagers(final KeyStore keystore, final String password) argument
266 createTrustManagers(final KeyStore keystore) argument
[all...]
/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DLockSettingsServiceTestable.java28 import android.security.keystore.KeyPermanentlyInvalidatedException;
111 LockSettingsStorage storage, MockGateKeeperService gatekeeper, KeyStore keystore,
113 super(new MockInjector(context, storage, keystore, mActivityManager, lockPatternUtils,
110 LockSettingsServiceTestable(Context context, LockPatternUtils lockPatternUtils, LockSettingsStorage storage, MockGateKeeperService gatekeeper, KeyStore keystore, IStorageManager storageManager, IActivityManager mActivityManager) argument

Completed in 171 milliseconds

123