OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TrustedCertificateStore
(Results
1 - 13
of
13
) sorted by null
/libcore/crypto/src/test/java/org/conscrypt/
CertPinManagerTest.java
95
CertPinManager pf = new CertPinManager(path, new
TrustedCertificateStore
());
115
new PinListEntry(entry, new
TrustedCertificateStore
());
125
new PinListEntry(entry, new
TrustedCertificateStore
());
134
new PinListEntry("", new
TrustedCertificateStore
());
145
PinListEntry e = new PinListEntry(shortEntry, new
TrustedCertificateStore
());
157
PinListEntry e = new PinListEntry(shortEntry, new
TrustedCertificateStore
());
169
PinListEntry e = new PinListEntry(shortEntry, new
TrustedCertificateStore
());
TrustedCertificateStoreTest.java
192
private
TrustedCertificateStore
store;
204
store = new
TrustedCertificateStore
(DIR_SYSTEM, DIR_ADDED, DIR_DELETED);
585
assertTrue(
TrustedCertificateStore
.isUser(alias));
592
assertTrue(
TrustedCertificateStore
.isUser(alias));
600
boolean system =
TrustedCertificateStore
.isSystem(alias);
601
boolean user =
TrustedCertificateStore
.isUser(alias);
646
if (
TrustedCertificateStore
.isSystem(alias)) {
648
} else if (
TrustedCertificateStore
.isUser(alias)) {
TrustManagerImplTest.java
191
return new CertPinManager(path, new
TrustedCertificateStore
());
/libcore/crypto/src/main/java/org/conscrypt/
TrustedCertificateKeyStoreSpi.java
29
* A KeyStoreSpi wrapper for the
TrustedCertificateStore
.
33
private final
TrustedCertificateStore
store = new
TrustedCertificateStore
();
CertPinManager.java
44
private final
TrustedCertificateStore
certStore;
46
public CertPinManager(
TrustedCertificateStore
store) throws PinManagerException {
53
public CertPinManager(String path,
TrustedCertificateStore
store) throws PinManagerException {
PinListEntry.java
49
private final
TrustedCertificateStore
certStore;
59
public PinListEntry(String entry,
TrustedCertificateStore
store) throws PinEntryException {
TrustManagerImpl.java
70
private final
TrustedCertificateStore
trustedCertificateStore
;
76
*
TrustedCertificateStore
, this may contain intermediate CAs.
107
TrustedCertificateStore
trustedCertificateStoreLocal = null;
118
trustedCertificateStoreLocal = new
TrustedCertificateStore
();
144
this.
trustedCertificateStore
= trustedCertificateStoreLocal;
495
if (
trustedCertificateStore
== null) {
501
X509Certificate issuer =
trustedCertificateStore
.findIssuer(lastCert);
518
if (
trustedCertificateStore
== null) {
519
// not trusted and no
TrustedCertificateStore
to chec
[
all
...]
TrustedCertificateStore.java
59
*
TrustedCertificateStore
} also provides the additional public
81
public final class
TrustedCertificateStore
{
115
public
TrustedCertificateStore
() {
119
public
TrustedCertificateStore
(File systemDir, File addedDir, File deletedDir) {
/packages/apps/KeyChain/src/com/android/keychain/
KeyChainService.java
42
import com.android.org.conscrypt.
TrustedCertificateStore
;
84
private final
TrustedCertificateStore
mTrustedCertificateStore
85
= new
TrustedCertificateStore
();
153
if (
TrustedCertificateStore
.isUser(alias)) {
/frameworks/base/keystore/java/android/security/
KeyChain.java
42
import com.android.org.conscrypt.
TrustedCertificateStore
;
346
TrustedCertificateStore
store = new
TrustedCertificateStore
();
/packages/apps/Settings/src/com/android/settings/
TrustedCredentialsSettings.java
53
import com.android.org.conscrypt.
TrustedCertificateStore
;
97
private Set<String> getAliases(
TrustedCertificateStore
store) {
106
private boolean deleted(
TrustedCertificateStore
store, String alias) {
155
private final
TrustedCertificateStore
mStore = new
TrustedCertificateStore
();
288
private final
TrustedCertificateStore
mStore;
299
private CertHolder(
TrustedCertificateStore
store,
/frameworks/base/core/java/android/app/admin/
DevicePolicyManager.java
35
import com.android.org.conscrypt.
TrustedCertificateStore
;
[
all
...]
/frameworks/base/services/java/com/android/server/
DevicePolicyManagerService.java
27
import com.android.org.conscrypt.
TrustedCertificateStore
;
[
all
...]
Completed in 163 milliseconds