Home
last modified time | relevance | path

Searched refs:supportedExts (Results 1 – 4 of 4) sorted by relevance

/libcore/ojluni/src/main/java/sun/security/provider/certpath/
DKeyChecker.java52 private Set<String> supportedExts; field in KeyChecker
87 if (supportedExts == null) { in getSupportedExtensions()
88 supportedExts = new HashSet<String>(3); in getSupportedExtensions()
89 supportedExts.add(KeyUsage_Id.toString()); in getSupportedExtensions()
90 supportedExts.add(ExtendedKeyUsage_Id.toString()); in getSupportedExtensions()
91 supportedExts.add(SubjectAlternativeName_Id.toString()); in getSupportedExtensions()
92 supportedExts = Collections.unmodifiableSet(supportedExts); in getSupportedExtensions()
94 return supportedExts; in getSupportedExtensions()
DConstraintsChecker.java64 private Set<String> supportedExts; field in ConstraintsChecker
94 if (supportedExts == null) { in getSupportedExtensions()
95 supportedExts = new HashSet<String>(2); in getSupportedExtensions()
96 supportedExts.add(BasicConstraints_Id.toString()); in getSupportedExtensions()
97 supportedExts.add(NameConstraints_Id.toString()); in getSupportedExtensions()
98 supportedExts = Collections.unmodifiableSet(supportedExts); in getSupportedExtensions()
100 return supportedExts; in getSupportedExtensions()
DPolicyChecker.java72 private Set<String> supportedExts; field in PolicyChecker
156 if (supportedExts == null) { in getSupportedExtensions()
157 supportedExts = new HashSet<String>(4); in getSupportedExtensions()
158 supportedExts.add(CertificatePolicies_Id.toString()); in getSupportedExtensions()
159 supportedExts.add(PolicyMappings_Id.toString()); in getSupportedExtensions()
160 supportedExts.add(PolicyConstraints_Id.toString()); in getSupportedExtensions()
161 supportedExts.add(InhibitAnyPolicy_Id.toString()); in getSupportedExtensions()
162 supportedExts = Collections.unmodifiableSet(supportedExts); in getSupportedExtensions()
164 return supportedExts; in getSupportedExtensions()
DForwardBuilder.java753 Set<String> supportedExts = checker.getSupportedExtensions(); in verifyCert() local
754 if (supportedExts != null) { in verifyCert()
755 unresCritExts.removeAll(supportedExts); in verifyCert()