/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}) and certificate revocation list (CRL) objects from 59 * @see CertPath 108 * Generates a {@code CertPath} object and initializes it with 118 * @return a {@code CertPath} initialized with the data from the 124 public CertPath engineGenerateCertPath(InputStream inStream) 131 * Generates a {@code CertPath} object and initializes it with 142 * @return a {@code CertPath} initialized with the data from the 149 public CertPath engineGenerateCertPath(InputStream inStream, 156 * Generates a {@code CertPath} object and initializes it with 169 * @return a {@code CertPath} initialized with the supplied list o [all...] |
PKIXCertPathBuilderResult.java | 62 private CertPath certPath; 68 * @param certPath the validated {@code CertPath} 74 * @throws NullPointerException if the {@code certPath}, 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...] |
CertPath.java | 39 * {@code CertPath}s. Subclasses can handle different kinds of 42 * All {@code CertPath} objects have a type, a list of 44 * {@code CertPath} class is immutable, a {@code CertPath} cannot 51 * certificate {@code cert} in a certification path {@code certPath}, 52 * {@code cert.getType().equals(certPath.getType())} must be 59 * Each {@code CertPath} object must support one or more encodings 63 * by a {@code CertPath} is considered the default encoding. This 67 * All {@code CertPath} objects are also {@code Serializable}. 68 * {@code CertPath} objects are resolved into an alternat [all...] |
CertificateFactory.java | 44 * used to generate certificate, certification path ({@code CertPath}) 51 * a {@code CertPath} (a certificate chain) and subsequently 109 * and the following <code>CertPath</code> encodings: 133 * CertPath Encodings section</a> of the 142 * @see CertPath 366 * Returns an iteration of the {@code CertPath} encodings supported 368 * the CertPath Encodings section in the <a href= 378 * {@code CertPath} encodings (as {@code String}s) 386 * Generates a {@code CertPath} object and initializes it with 393 * @return a {@code CertPath} initialized with the data from th [all...] |
/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...] |
CertPathValidatorExceptionTest.java | 30 import java.security.cert.CertPath; 195 * <code>CertPathValidatorException(String, Throwable, CertPath, int)</code> 198 * <code>certPath</code> is null <code>index</code> is -1 211 * <code>CertPathValidatorException(String, Throwable, CertPath, int)</code> 214 * <code>certPath</code> is null <code>index</code> not -1 throws: 226 + ", certPath is null and index is " + indx[j]); 235 * <code>CertPathValidatorException(String, Throwable, CertPath, int)</code> 238 * <code>certPath</code> is null <code>index</code> is -1 264 + ", certPath is null and index is -1"); 271 * <code>CertPathValidatorException(String, Throwable, CertPath, int)</code [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);
|
/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();
|
/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);
|
PKIX.java | 25 package sun.security.provider.certpath; 42 private static final Debug debug = Debug.getInstance("certpath"); 51 static ValidatorParams checkParams(CertPath cp, CertPathParameters params) 78 private CertPath certPath; 89 ValidatorParams(CertPath cp, PKIXParameters params) 95 + "CertPath type specified, must be X.509 or X509"); 97 this.certPath = cp; 115 CertPath certPath() { [all...] |
/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");
|
MyCertificateFactorySpi.java | 29 import java.security.cert.CertPath; 99 public CertPath engineGenerateCertPath(InputStream inStream) 106 throw new CertificateException("There are no CertPath encodings"); 111 public CertPath engineGenerateCertPath(InputStream inStream, String encoding) 124 public CertPath engineGenerateCertPath(List<? extends Certificate> certificates) {
|
MyCertPath.java | 26 import java.security.cert.CertPath; 35 * Stub class for <code>java.security.cert.CertPath</code> tests 38 public class MyCertPath extends CertPath { 69 * @see java.security.cert.CertPath#getCertificates() 78 * @see java.security.cert.CertPath#getEncoded() 89 * @see java.security.cert.CertPath#getEncoded(java.lang.String) 102 * @see java.security.cert.CertPath#getEncodings() 110 * @see java.security.cert.CertPath#writeReplace() 116 public class MyCertPathRep extends CertPath.CertPathRep {
|
/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() {
|
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/ |
CertificateVerifier.java | 22 import java.security.cert.CertPath; 49 CertPath path = factory.generateCertPath(
|
/external/conscrypt/common/src/main/java/org/conscrypt/ |
OpenSSLX509CertPath.java | 22 import java.security.cert.CertPath; 35 * An implementation of {@link CertPath} based on BoringSSL. 37 final class OpenSSLX509CertPath extends CertPath { 143 private static CertPath fromPkiPathEncoding(InputStream inStream) throws CertificateException { 182 private static CertPath fromPkcs7Encoding(InputStream inStream) throws CertificateException { 224 private static CertPath fromEncoding(InputStream inStream, Encoding encoding) 236 static CertPath fromEncoding(InputStream inStream, String encoding) 250 static CertPath fromEncoding(InputStream inStream) throws CertificateException {
|
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/ |
CodeSignerTest.java | 27 import java.security.cert.CertPath; 38 private CertPath cpath = TestCertUtils.genCertPath(3, 0); 88 CertPath cpath2 = TestCertUtils.genCertPath(5, 3);
|
/libcore/luni/src/test/java/tests/targets/security/cert/ |
CertPathValidatorTestPKIX.java | 20 import java.security.cert.CertPath; 41 private CertPath certPath; 49 public CertPath getCertPath() { 50 return certPath; 86 certPath = builderResult.getCertPath();
|