HomeSort by relevance Sort by last modified time
    Searched refs:CertPath (Results 1 - 25 of 102) sorted by null

1 2 3 4 5

  /libcore/ojluni/src/main/java/java/security/cert/
CertPathBuilderResult.java 34 * {@code CertPath} built by the {@code CertPathBuilder} instance.
59 CertPath getCertPath();
CertPathValidatorSpi.java 67 * The {@code CertPath} specified must be of a type that is
71 * algorithm validates {@code CertPath} objects of type X.509.
73 * @param certPath the {@code CertPath} to be validated
76 * @exception CertPathValidatorException if the {@code CertPath}
79 * parameters or the type of the specified {@code CertPath} are
83 engineValidate(CertPath certPath, CertPathParameters params)
CertificateFactorySpi.java 44 * (<code>CertPath</code>) and certificate revocation list (CRL) objects from
59 * @see CertPath
108 * Generates a <code>CertPath</code> object and initializes it with
118 * @return a <code>CertPath</code> initialized with the data from the
124 public CertPath engineGenerateCertPath(InputStream inStream)
131 * Generates a <code>CertPath</code> object and initializes it with
142 * @return a <code>CertPath</code> initialized with the data from the
149 public CertPath engineGenerateCertPath(InputStream inStream,
156 * Generates a <code>CertPath</code> object and initializes it with
169 * @return a <code>CertPath</code> initialized with the supplied list o
    [all...]
PKIXCertPathBuilderResult.java 62 private CertPath certPath;
68 * @param certPath the validated <code>CertPath</code>
74 * @throws NullPointerException if the <code>certPath</code>,
78 public PKIXCertPathBuilderResult(CertPath certPath,
83 if (certPath == null)
84 throw new NullPointerException("certPath must be non-null");
85 this.certPath = certPath
    [all...]
CertPathValidatorException.java 73 * @serial the {@code CertPath} that was being validated when
76 private CertPath certPath;
138 * @param certPath the certification path that was in the process of
142 * the list of certificates in a {@code CertPath} is zero based.
144 * {@code (index < -1 || (certPath != null && index >=
145 * certPath.getCertificates().size()) }
146 * @throws IllegalArgumentException if {@code certPath} is
150 CertPath certPath, int index)
    [all...]
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
CertPathTest.java 24 import java.security.cert.CertPath;
32 * Tests for <code>CertPath</code> fields and methods
60 CertPath cp1 = new MyCertPath(testEncoding);
61 CertPath cp2 = new MyCertPath(testEncoding);
71 CertPath cp1 = new MyCertPath(testEncoding);
72 CertPath cp2 = new MyCertPath(testEncoding);
89 CertPath cp1 = new MyCertPath(testEncoding);
95 * Assertion: object equals to other <code>CertPath</code>
99 CertPath cp1 = new MyCertPath(testEncoding);
100 CertPath cp2 = new MyCertPath(testEncoding)
    [all...]
  /external/apache-harmony/security/src/test/api/java.injected/java/security/cert/
myCertPath.java 25 import java.security.cert.CertPath;
28 * Class for CertPath creating
30 public class myCertPath extends CertPath {
52 public CertPath get(String s) {
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
PKIXAttrCertChecker.java 3 import java.security.cert.CertPath;
37 * @param certPath The certificate path which belongs to the attribute
46 public abstract void check(X509AttributeCertificate attrCert, CertPath certPath,
47 CertPath holderCertPath, Collection unresolvedCritExts)
  /libcore/luni/src/test/java/tests/security/cert/
CertPathTest.java 26 import java.security.cert.CertPath;
36 * Tests for <code>CertPath</code> fields and methods
56 * Test for <code>CertPath(String type)</code> method<br>
61 CertPath cp1 = new MyCertPath(testEncoding);
69 CertPath cp1 = new MyCertPath(null);
80 CertPath cp1 = new MyCertPath(testEncoding);
81 CertPath cp2 = new MyCertPath(testEncoding);
82 CertPath cp3 = new MyCertPath(testEncoding1);
93 CertPath cp1 = new MyCertPath(testEncoding);
94 CertPath cp2 = new MyCertPath(testEncoding)
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/exception/
ExtCertPathBuilderException.java 3 import java.security.cert.CertPath;
19 CertPath certPath, int index)
ExtCertPathValidatorException.java 3 import java.security.cert.CertPath;
20 CertPath certPath, int index)
22 super(msg, cause, certPath, index);
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/serialization/
CertPathTest.java 25 import java.security.cert.CertPath;
36 * Tests for <code>CertPath</code> serialization
40 //Certificate/CertPath type to be created during testing
43 //Input file name used for <code>CertPath</code> instance generation
44 private static final String certPathFileName = "java/security/cert/CertPath.PkiPath";
57 CertPath certPath = cf.generateCertPath(Support_Resources
60 SerializationTest.verifySelf(certPath);
70 CertPath certPath = cf.generateCertPath(Support_Resource
    [all...]
  /libcore/luni/src/test/java/tests/security/
CertPathBuilderTest.java 18 import java.security.cert.CertPath;
40 public abstract void validateCertPath(CertPath path);
48 CertPath path = builderResult.getCertPath();
CertPathValidatorTest.java 18 import java.security.cert.CertPath;
34 public abstract CertPath getCertPath();
  /external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/serialization/
CodeSignerTest.java 26 import java.security.cert.CertPath;
43 CertPath cpath = TestCertUtils.getCertPath();
TimestampTest.java 25 import java.security.cert.CertPath;
42 CertPath cpath = TestCertUtils.getCertPath();
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/
Timestamp_ImplTest.java 25 import java.security.cert.CertPath;
43 private CertPath cpath = new MyCertPath(encoding);
CodeSigner_ImplTest.java 26 import java.security.cert.CertPath;
38 private CertPath cpath = TestCertUtils.genCertPath(3, 0);
  /external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/cert/
MyCertPathValidatorSpi.java 25 import java.security.cert.CertPath;
39 public CertPathValidatorResult engineValidate(CertPath certPath,
43 if (certPath == null) {
45 throw new CertPathValidatorException("certPath null");
MyCertPath.java 24 import java.security.cert.CertPath;
33 * Stub class for <code>java.security.cert.CertPath</code> tests
35 public class MyCertPath extends CertPath {
66 * @see java.security.cert.CertPath#getCertificates()
74 * @see java.security.cert.CertPath#getEncoded()
85 * @see java.security.cert.CertPath#getEncoded(java.lang.String)
98 * @see java.security.cert.CertPath#getEncodings()
MyCertificateFactorySpi.java 28 import java.security.cert.CertPath;
95 public CertPath engineGenerateCertPath(InputStream inStream)
102 throw new CertificateException("There are no CertPath encodings");
107 public CertPath engineGenerateCertPath(InputStream inStream, String encoding)
120 public CertPath engineGenerateCertPath(List certificates)
  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
SunCertPathBuilderResult.java 26 package sun.security.provider.certpath;
30 import java.security.cert.CertPath;
52 private static final Debug debug = Debug.getInstance("certpath");
59 * @param certPath the validated <code>CertPath</code>
67 SunCertPathBuilderResult(CertPath certPath,
71 super(certPath, trustAnchor, policyTree, subjectPublicKey);
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/cert/
MyCertPathValidatorSpi.java 26 import java.security.cert.CertPath;
40 public CertPathValidatorResult engineValidate(CertPath certPath,
44 if (certPath == null) {
46 throw new CertPathValidatorException("certPath null");
  /libcore/ojluni/src/main/java/java/security/
CodeSigner.java 29 import java.security.cert.CertPath;
48 private CertPath signerCertPath;
73 public CodeSigner(CertPath signerCertPath, Timestamp timestamp) {
86 public CertPath getSignerCertPath() {
Timestamp.java 30 import java.security.cert.CertPath;
61 private CertPath signerCertPath;
75 public Timestamp(Date timestamp, CertPath signerCertPath) {
97 public CertPath getSignerCertPath() {

Completed in 613 milliseconds

1 2 3 4 5