Searched refs:DistributionPoint (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DCRLDistributionPointsExtension.java72 * CRLDistPointsSyntax ::= SEQUENCE SIZE (1..MAX) OF DistributionPoint
78 * @see DistributionPoint
99 * The List of DistributionPoint objects.
101 private List<DistributionPoint> distributionPoints;
107 * DistributionPoint; the criticality is set to false.
113 List<DistributionPoint> distributionPoints) throws IOException {
120 * DistributionPoint.
127 List<DistributionPoint> distributionPoints) throws IOException {
137 boolean isCritical, List<DistributionPoint> distributionPoints,
179 distributionPoints = new ArrayList<DistributionPoint>();
[all...]
H A DFreshestCRLExtension.java71 public FreshestCRLExtension(List<DistributionPoint> distributionPoints)
H A DDistributionPoint.java36 * Represent the DistributionPoint sequence used in the CRL
41 * DistributionPoint ::= SEQUENCE {
96 public class DistributionPoint { class
151 public DistributionPoint(GeneralNames fullName, boolean[] reasonFlags, method in class:DistributionPoint
173 public DistributionPoint(RDN relativeName, boolean[] reasonFlags, method in class:DistributionPoint
187 * @param val the DER encoded form of the DistributionPoint
190 public DistributionPoint(DerValue val) throws IOException { method in class:DistributionPoint
192 throw new IOException("Invalid encoding of DistributionPoint.");
195 // Note that all the fields in DistributionPoint are defined as
204 + "DistributionPoint
[all...]
/openjdk7/jdk/test/sun/security/util/BitArray/
H A DNamedBitList.java35 import sun.security.x509.DistributionPoint;
62 // Read sun.security.x509.DistributionPoint for ASN.1 definition
63 DistributionPoint dp = new DistributionPoint(gns, bb, gns);
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DCrlRevocationChecker.java68 import sun.security.x509.DistributionPoint;
767 List<DistributionPoint> points = null;
773 DistributionPoint point = new DistributionPoint
778 points = (List<DistributionPoint>)ext.get(
782 for (Iterator<DistributionPoint> t = points.iterator();
784 DistributionPoint point = t.next();
H A DDistributionPointFetcher.java111 List<DistributionPoint> points = (List<DistributionPoint>)ext.get(
114 for (Iterator<DistributionPoint> t = points.iterator();
116 DistributionPoint point = t.next();
138 X509CertImpl certImpl, DistributionPoint point, boolean[] reasonsMask,
282 static boolean verifyCRL(X509CertImpl certImpl, DistributionPoint point,
/openjdk7/jdk/src/share/classes/sun/security/tools/
H A DKeyTool.java2099 for (DistributionPoint o: (List<DistributionPoint>)
4020 new DistributionPoint(gnames, null, null))));

Completed in 295 milliseconds