Searched refs:supportedExts (Results 1 – 4 of 4) sorted by relevance
52 private Set<String> supportedExts; field in KeyChecker87 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()
64 private Set<String> supportedExts; field in ConstraintsChecker94 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()
72 private Set<String> supportedExts; field in PolicyChecker156 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()
753 Set<String> supportedExts = checker.getSupportedExtensions(); in verifyCert() local754 if (supportedExts != null) { in verifyCert()755 unresCritExts.removeAll(supportedExts); in verifyCert()