/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/ |
TimestampTest.java | 24 import java.security.cert.CertPath; 43 private CertPath cpath = new MyCertPath(encoding);
|
/libcore/luni/src/main/java/java/security/ |
CodeSigner.java | 21 import java.security.cert.CertPath; 30 private CertPath signerCertPath; 48 public CodeSigner(CertPath signerCertPath, Timestamp timestamp) { 89 public CertPath getSignerCertPath() {
|
/libcore/luni/src/main/java/java/security/cert/ |
CertPathParameters.java | 23 * This interface is for grouping purposes of {@code CertPath} parameter
|
PKIXCertPathValidatorResult.java | 26 * @see CertPathValidator#validate(CertPath, CertPathParameters)
|
/external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/ |
JDKX509CertificateFactory.java | 18 import java.security.cert.CertPath; 343 public CertPath engineGenerateCertPath( 350 public CertPath engineGenerateCertPath( 358 public CertPath engineGenerateCertPath( 371 throw new CertificateException("list contains non X509Certificate object while creating CertPath\n" + obj.toString());
|
CertPathValidatorUtilities.java | 9 import java.security.cert.CertPath; [all...] |
/external/chromium/chrome/browser/automation/ |
testing_automation_provider_chromeos.cc | 392 std::string service_path, password, identity, certpath; local 396 !args->GetString("certpath", &certpath)) { 412 if (!certpath.empty()) 413 wifi->SetCertPath(certpath); 430 std::string ssid, security, password, identity, certpath; local 435 !args->GetString("certpath", &certpath)) { 462 identity, certpath);
|
/libcore/luni/src/main/java/org/apache/harmony/security/provider/cert/ |
X509CertPathImpl.java | 27 import java.security.cert.CertPath; 50 * This class is an implementation of X.509 CertPath. This implementation 66 * ContentInfo structure. CertPath object is generated on the base of 74 public class X509CertPathImpl extends CertPath { 243 // ---- java.security.cert.CertPath abstract method implementations ---- 247 * @see java.security.cert.CertPath#getCertificates() 255 * @see java.security.cert.CertPath#getEncoded() 268 * @see java.security.cert.CertPath#getEncoded(String) 291 * @see java.security.cert.CertPath#getEncodings()
|
X509CertFactoryImpl.java | 30 import java.security.cert.CertPath; 372 public CertPath engineGenerateCertPath(InputStream inStream) 384 public CertPath engineGenerateCertPath( 398 // decode PEM chunk into ASN.1 form and decode CertPath object 417 public CertPath engineGenerateCertPath(List certificates) [all...] |
/libcore/luni/src/test/java/tests/security/cert/ |
CertificateFactorySpiTest.java | 248 * Assertion: Generates a <code>CertPath</code> object and initializes it 267 * Assertion: Generates a <code>CertPath</code> object and initializes it 288 * method. Assertion: generates a <code>CertPath</code> object and 314 * method. Assertion: generates a <code>CertPath</code> object and 335 * method Assertion: generates a <code>CertPath</code> object and 361 * method Assertion: generates a <code>CertPath</code> object and
|
CertPathBuilder1Test.java | 36 import java.security.cert.CertPath; 329 CertPath certPath = result.getCertPath(); 330 assertNotNull("certpath of builder result is null", certPath);
|
CertificateFactory2Test.java | 37 import java.security.cert.CertPath; 153 CertPath cp;
|
CertPathValidator1Test.java | 322 * Test for <code>validate(CertPath certpath, CertPathParameters params)</code> method
|
CertPathValidator2Test.java | 36 import java.security.cert.CertPath;
|
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/ |
TestCertUtils.java | 82 * Returns a test CertPath, which uses getCertChain() to obtain a list of 87 public static CertPath getCertPath() { 93 * TestCertificate-s included in the CertPath will be uniq (will have 96 * in the CertPath. The second certificate will have (startID+1) number 99 * @param howMany - shows how many TestCerts must contain the CertPath generated 103 public static CertPath genCertPath(int howMany, int startID) { 147 public static final class TestCertPath extends CertPath implements 181 * @see java.security.cert.CertPath#getCertificates() 188 * @see java.security.cert.CertPath#getEncoded() 195 * @see java.security.cert.CertPath#getEncoded(java.lang.String [all...] |
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/ |
TestCertUtils.java | 83 * Returns a test CertPath, which uses getCertChain() to obtain a list of 88 public static CertPath getCertPath() { 94 * TestCertificate-s included in the CertPath will be uniq (will have 97 * in the CertPath. The second certificate will have (startID+1) number 100 * @param howMany - shows how many TestCerts must contain the CertPath generated 104 public static CertPath genCertPath(int howMany, int startID) { 148 public static final class TestCertPath extends CertPath implements 182 * @see java.security.cert.CertPath#getCertificates() 189 * @see java.security.cert.CertPath#getEncoded() 196 * @see java.security.cert.CertPath#getEncoded(java.lang.String [all...] |
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/ |
TimestampTest.java | 26 import java.security.cert.CertPath; 43 private CertPath cpath = new MyCertPath(encoding);
|
/libcore/luni/src/test/java/tests/targets/security/cert/ |
CertPathBuilderTestPKIX.java | 20 import java.security.cert.CertPath; 76 public void validateCertPath(CertPath path) {
|
/libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/ |
TrustManagerImpl.java | 23 import java.security.cert.CertPath; 182 CertPath certPath = factory.generateCertPath(Arrays.asList(newChain)); 185 "Trust anchor for certification path not found.", null, certPath, -1)); 191 validator.validate(certPath, params);
|
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/serialization/ |
CertificateTest.java | 72 * Assertion: ObjectStreamException if a <code>CertPath</code> could not
|
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/cert/ |
CertificateFactory_ImplTest.java | 28 import java.security.cert.CertPath; [all...] |
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/ |
CertificateFactory1Test.java | 33 import java.security.cert.CertPath; 607 * Assertion: returns empty CertPath if certificates is empty 619 CertPath cp = certFs[i].generateCertPath(list);
|
CertPathValidator1Test.java | 329 * Test for <code>validate(CertPath certpath, CertPathParameters params)</code> method
|
CertificateFactory2Test.java | 31 import java.security.cert.CertPath; 163 CertPath cp;
|
/external/ipsec-tools/src/racoon/ |
eaytest.c | 224 char *certpath; local 341 certpath = *(av + 1); 342 certs = getcerts(certpath); 349 certpath = "/usr/local/openssl/certs"; 401 error = eay_check_x509cert(&c, certpath, NULL, 1);
|