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

1 2

  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
KSTrustedCertificateEntryTest.java 36 * Tests for <code>KeyStore.TrustedCertificateEntry</code> class constructor and methods
43 * Test for <codfe>KeyStore.TrustedCertificateEntry(Certificate trustCert)</code>
50 new KeyStore.TrustedCertificateEntry(cert);
57 KeyStore.TrustedCertificateEntry ksTCE = new KeyStore.TrustedCertificateEntry(cert);
59 assertTrue(ksTCE instanceof KeyStore.TrustedCertificateEntry);
73 new KeyStore.TrustedCertificateEntry(cert, null /* attributes */);
85 KeyStore.TrustedCertificateEntry ksTCE =
86 new KeyStore.TrustedCertificateEntry(cert);
111 KeyStore.TrustedCertificateEntry ksTCE
    [all...]
KeyStoreSpiTest.java 77 KeyStore.TrustedCertificateEntry.class));
80 ksSpi.engineEntryInstanceOf(null, KeyStore.TrustedCertificateEntry.class);
123 ksSpi.engineSetEntry("", new KeyStore.TrustedCertificateEntry(
KeyStoreTest.java 272 * java.security.KeyStore.TrustedCertificateEntry.toString()
362 assertNotNull(new KeyStore.TrustedCertificateEntry(new TestX509Certificate()).toString());
KeyStore4Test.java 566 assertTrue("entry is not cert entry", entry instanceof KeyStore.TrustedCertificateEntry);
KeyStore2Test.java     [all...]
  /libcore/ojluni/src/main/java/java/security/
KeyStoreSpi.java 99 * {@code TrustedCertificateEntry},
184 * {@code TrustedCertificateEntry},
249 * {@code TrustedCertificateEntry}.
266 * {@code TrustedCertificateEntry},
457 return new KeyStore.TrustedCertificateEntry
530 if (entry instanceof KeyStore.TrustedCertificateEntry) {
531 KeyStore.TrustedCertificateEntry tce =
532 (KeyStore.TrustedCertificateEntry)entry;
574 if (entryClass == KeyStore.TrustedCertificateEntry.class) {
KeyStore.java 65 * <li><b>KeyStore.TrustedCertificateEntry</b>
755 public static final class TrustedCertificateEntry implements Entry {
761 * Constructs a {@code TrustedCertificateEntry} with a
769 public TrustedCertificateEntry(Certificate trustedCert) {
778 * Constructs a {@code TrustedCertificateEntry} with a
782 * in the new {@code TrustedCertificateEntry} object.
792 public TrustedCertificateEntry(Certificate trustedCert,
825 * Returns a string representation of this TrustedCertificateEntry.
826 * @return a string representation of this TrustedCertificateEntry.
    [all...]
  /cts/tests/tests/keystore/src/android/keystore/cts/
KeyStoreTest.java 36 import java.security.KeyStore.TrustedCertificateEntry;
430 assertSame(TrustedCertificateEntry.class, actual.getClass());
432 ((TrustedCertificateEntry) actual).getTrustedCertificate());
    [all...]
AndroidKeyStoreTest.java 44 import java.security.KeyStore.TrustedCertificateEntry;
    [all...]
  /cts/tests/tests/security/src/android/security/cts/
ConscryptIntermediateVerificationTest.java 66 keystore.setEntry("root", new KeyStore.TrustedCertificateEntry(root), null);
X509CertChainBuildingTest.java 198 ks.setEntry(String.valueOf(i++), new KeyStore.TrustedCertificateEntry(root), null);
  /external/conscrypt/platform/src/test/java/org/conscrypt/
TrustedCertificateStoreTest.java 29 import java.security.KeyStore.TrustedCertificateEntry;
288 Certificate certLoopTempCaCert1 = ((TrustedCertificateEntry) certLoopTempCa1
301 CERTLOOP_CA2 = (X509Certificate) ((TrustedCertificateEntry) certLoopCa2
316 CERTLOOP_CA1 = (X509Certificate) ((TrustedCertificateEntry) certLoopCa1
327 CERTLOOP_EE = (X509Certificate) ((TrustedCertificateEntry) certLoopEe
344 MULTIPLE_ISSUERS_CA1 = (X509Certificate) ((TrustedCertificateEntry) multipleIssuersCa1
356 MULTIPLE_ISSUERS_CA2 = (X509Certificate) ((TrustedCertificateEntry) multipleIssuersCa2
372 (X509Certificate) ((TrustedCertificateEntry) multipleIssuersCa1SignedByCa2
384 MULTIPLE_ISSUERS_EE = (X509Certificate) ((TrustedCertificateEntry) multipleIssuersEe
    [all...]
  /external/conscrypt/testing/src/main/java/org/conscrypt/java/security/
TestKeyStore.java 30 import java.security.KeyStore.TrustedCertificateEntry;
    [all...]
  /libcore/support/src/test/java/libcore/java/security/
TestKeyStore.java 57 import java.security.KeyStore.TrustedCertificateEntry;
    [all...]
  /frameworks/base/keystore/java/android/security/keystore/
AndroidKeyStoreSpi.java 81 * TrustedCertificateEntry will just have a Credentials.CA_CERTIFICATE entry
    [all...]
  /frameworks/base/tests/NetworkSecurityConfigTest/src/android/security/net/config/
XmlConfigTests.java 431 new KeyStore.TrustedCertificateEntry(cert),
  /prebuilts/misc/common/robolectric/android-all/
android-all-4.1.2_r1-robolectric-r1.jar 
android-all-4.2.2_r1.2-robolectric-r1.jar 
android-all-4.3_r2-robolectric-r1.jar 
android-all-4.4_r1-robolectric-r2.jar 
android-all-5.0.2_r3-robolectric-r0.jar 
android-all-5.1.1_r9-robolectric-r2.jar 
android-all-6.0.1_r3-robolectric-r1.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 

Completed in 2259 milliseconds

1 2