OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:keystore
(Results
151 - 175
of
464
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/sdk/testapps/aidlTest/libWithAidl/
ant.properties
14
# 'key.store' for the location of your
keystore
and
/sdk/testapps/aidlTest/mainProject/
ant.properties
14
# 'key.store' for the location of your
keystore
and
/sdk/testapps/basicProjectWithAidl/
ant.properties
14
# 'key.store' for the location of your
keystore
and
/sdk/testapps/buildConfigTest/app/
ant.properties
14
# 'key.store' for the location of your
keystore
and
/sdk/testapps/customViewTest/libWithCustomView/
ant.properties
14
# 'key.store' for the location of your
keystore
and
/sdk/testapps/customViewTest/mainProject/
ant.properties
14
# 'key.store' for the location of your
keystore
and
/sdk/testapps/gridlayoutTest/app/
ant.properties
14
# 'key.store' for the location of your
keystore
and
/sdk/testapps/jarCheckTests1/app/
ant.properties
14
# 'key.store' for the location of your
keystore
and
/sdk/testapps/jarCheckTests1/lib1/
ant.properties
14
# 'key.store' for the location of your
keystore
and
/sdk/testapps/jarCheckTests1/lib2/
ant.properties
14
# 'key.store' for the location of your
keystore
and
/sdk/testapps/jarCheckTests2/app/
ant.properties
14
# 'key.store' for the location of your
keystore
and
/sdk/testapps/jarCheckTests2/lib1/
ant.properties
14
# 'key.store' for the location of your
keystore
and
/sdk/testapps/jarCheckTests2/lib2/
ant.properties
14
# 'key.store' for the location of your
keystore
and
/sdk/testapps/jarCheckTests3/app/
ant.properties
14
# 'key.store' for the location of your
keystore
and
/sdk/testapps/jarCheckTests3/lib1/
ant.properties
14
# 'key.store' for the location of your
keystore
and
/sdk/testapps/jarCheckTests3/lib2/
ant.properties
14
# 'key.store' for the location of your
keystore
and
/system/security/keystore/
defaults.h
23
* frameworks/base/
keystore
/java/android/security/KeyPairGeneratorSpec.java
/build/target/product/
core_minimal.mk
45
keystore
\
46
keystore
.default \
/cts/tests/tests/security/src/android/security/cts/
CertificateTest.java
25
import java.security.
KeyStore
;
116
KeyStore
keyStore
=
KeyStore
.getInstance("AndroidCAStore");
117
keyStore
.load(null, null);
119
List<String> aliases = Collections.list(
keyStore
.aliases());
124
assertTrue(
keyStore
.isCertificateEntry(alias));
125
X509Certificate certificate = (X509Certificate)
keyStore
.getCertificate(alias);
/external/chromium_org/net/android/java/src/org/chromium/net/
X509Util.java
18
import java.security.
KeyStore
;
72
* BroadcastReceiver that listens to change in the system
keystore
to invalidate certificate
82
private static
KeyStore
sTestKeyStore;
109
sTestKeyStore =
KeyStore
.getInstance(
KeyStore
.getDefaultType());
133
private static X509TrustManager createTrustManager(
KeyStore
keyStore
) throws KeyStoreException,
137
tmf.init(
keyStore
);
/external/chromium_org/net/android/
keystore_openssl.h
13
// OpenSSL-specific functions to use the Android platform
keystore
.
15
// segregated from net/android/
keystore
.h because the latter only provides
/external/chromium_org/sync/syncable/
nigori_handler.h
46
// Whether a
keystore
key needs to be requested from the sync server.
50
// Set the
keystore
keys the server returned for this account.
/frameworks/base/keystore/java/android/security/
Credentials.java
217
static boolean deleteAllTypesForAlias(
KeyStore
keystore
, String alias) {
222
return
keystore
.delKey(Credentials.USER_PRIVATE_KEY + alias)
223
| deleteCertificateTypesForAlias(
keystore
, alias);
231
static boolean deleteCertificateTypesForAlias(
KeyStore
keystore
, String alias) {
236
return
keystore
.delete(Credentials.USER_CERTIFICATE + alias)
237
|
keystore
.delete(Credentials.CA_CERTIFICATE + alias);
/libcore/luni/src/main/java/java/security/
KeyStoreException.java
21
* {@code KeyStoreException} is a general {@code
KeyStore
} exception.
23
* @see
KeyStore
/libcore/luni/src/main/java/javax/net/ssl/
KeyManagerFactorySpi.java
21
import java.security.
KeyStore
;
52
protected abstract void engineInit(
KeyStore
ks, char[] password) throws KeyStoreException,
Completed in 212 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>