HomeSort by relevance Sort by last modified time
    Searched full:certificates (Results 101 - 125 of 1008) sorted by null

1 2 3 45 6 7 8 91011>>

  /libcore/ojluni/src/main/java/java/security/cert/
CRLReason.java 49 * to end-entity certificates only.
56 * to certificate authority (CA) certificates only.
101 * to authority attribute (AA) certificates only.
Certificate.java 39 * <p>Abstract class for managing a variety of identity certificates.
44 * This class is an abstraction for certificates that have different
46 * certificates, such as X.509 and PGP, share general certificate
50 * X.509, PGP, and SDSI certificates can all be implemented by
98 * @return true iff the encoded forms of the two certificates
140 * form of encoding; for example, X.509 certificates would
PKIXRevocationChecker.java 39 * certificates with the PKIX algorithm.
42 * certificates with the Online Certificate Status Protocol (OCSP) or
45 * is a time-stamped list identifying revoked certificates, and RFC 5280
46 * describes an algorithm for determining the revocation status of certificates
50 * status of certificates with OCSP and CRLs. By default, OCSP is the
181 * the revocation status of the specified certificates when OCSP is used.
203 * the revocation status of the specified certificates when OCSP is used.
279 * Only check the revocation status of end-entity certificates.
  /libcore/ojluni/src/main/java/javax/net/ssl/
X509TrustManager.java 31 * Instance of this interface manage which X509 certificates
88 * Return an array of certificate authority certificates
92 * CA issuer certificates.
HandshakeCompletedEvent.java 100 * When multiple certificates are available for use in a
106 * @return an ordered array of certificates, with the local
108 * certificate authorities. If no certificates were sent,
125 * @return an ordered array of the peer certificates,
149 * @return an ordered array of peer X.509 certificates,
151 * certificate authorities. (The certificates are in
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/cert/
MyCertificateFactorySpi.java 124 public CertPath engineGenerateCertPath(List<? extends Certificate> certificates) {
125 if (certificates == null) {
127 throw new NullPointerException("certificates is null");
  /prebuilts/go/darwin-x86/src/crypto/tls/
conn_test.go 64 Certificates: []Certificate{
83 for i := range config.Certificates {
84 if c == &config.Certificates[i] {
  /prebuilts/go/linux-x86/src/crypto/tls/
conn_test.go 64 Certificates: []Certificate{
83 for i := range config.Certificates {
84 if c == &config.Certificates[i] {
  /cts/tests/tests/security/src/android/security/cts/
X509CertChainBuildingTest.java 46 /* Certificates for tests. These are initialized in setUp.
47 * All certificates use 2048 bit RSA keys and SHA-256 digests unless otherwise specified.
74 * These can be generated by running cts/tools/utils/certificates.py
119 // Verify that providing all the certificates doesn't cause the path building to get stuck
120 // in the loop caused by the cross signed certificates.
135 // certificates over bridge versions of the same certificate.
  /external/apache-http/android/src/android/net/http/
CertificateChainValidator.java 68 * @return The singleton instance of the certificates chain validator
100 * Performs the handshake and server certificates validation
118 // retrieve the chain of the server peer certificates
124 sslSocket, "failed to retrieve peer certificates");
141 * @param certChain The bytes for certificates in ASN.1 DER encoded certificates format.
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/asymmetric/x509/
CertificateFactory.java 31 * class for dealing with X509 certificates.
34 * base 64 encoded certs, as well as the BER binaries of certificates and some classes of PKCS#7
229 * Returns a (possibly empty) collection view of the certificates
358 List certificates)
361 Iterator iter = certificates.iterator();
374 return new PKIXCertPath(certificates);
  /external/conscrypt/src/main/java/org/conscrypt/
OpenSSLX509CertificateFactory.java 60 * The code for X509 Certificates and CRL is pretty much the same. We use
168 * It wasn't, so just try to keep grabbing certificates until we
327 public CertPath engineGenerateCertPath(List<? extends Certificate> certificates)
329 final List<X509Certificate> filtered = new ArrayList<X509Certificate>(certificates.size());
330 for (int i = 0; i < certificates.size(); i++) {
331 final Certificate c = certificates.get(i);
  /libcore/ojluni/src/main/java/sun/security/provider/certpath/
X509CertPath.java 69 * List of certificates in this chain
96 * The certificates are copied out of the supplied <code>List</code>
170 * unmodifiable List of the certificates.
173 * @return an unmodifiable List of the certificates
211 * unmodifiable List of the certificates.
214 * @return an unmodifiable List of the certificates
301 // get encoded certificates
387 * Returns the list of certificates in this certification path.
  /prebuilts/go/darwin-x86/src/crypto/x509/
example_test.go 13 // Verifying with a custom list of root certificates.
65 // First, create the set of root certificates. For this example we only
root_cgo_darwin.go 16 // FetchPEMRoots fetches the system's list of trusted X.509 root certificates.
19 // certificates of the system. On failure, the function returns -1.
  /prebuilts/go/linux-x86/src/crypto/x509/
example_test.go 13 // Verifying with a custom list of root certificates.
65 // First, create the set of root certificates. For this example we only
root_cgo_darwin.go 16 // FetchPEMRoots fetches the system's list of trusted X.509 root certificates.
19 // certificates of the system. On failure, the function returns -1.
  /packages/apps/Settings/src/com/android/settings/vpn2/
ConfigDialog.java 376 String[] certificates = mKeyStore.list(prefix); local
378 if (certificates == null || certificates.length == 0) {
379 certificates = new String[] {first};
381 String[] array = new String[certificates.length + 1];
383 System.arraycopy(certificates, 0, array, 1, certificates.length);
384 certificates = array;
388 context, android.R.layout.simple_spinner_item, certificates);
392 for (int i = 1; i < certificates.length; ++i)
    [all...]
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/cert/
CertificateFactory_ImplTest.java 53 * Certificates and CRLs.
102 * Base64 encoded PkiPath object containing 2 X.509 certificates.
208 * The public key to verify generated Certificates and CRLs.
466 * Generates Certificates on the base of consequent
490 { -2, pem_pkcs, pem_x509 }, // 2 Certificates are expected
565 * Generates CRLs/Certificates on the base of PEM PKCS7 encoding.
640 List certificates; local
645 certificates = factory.generateCertPath(bais).getCertificates();
647 2, certificates.size());
651 for (Iterator it = certificates.iterator(); it.hasNext(); )
    [all...]
  /device/sample/overlays/location/frameworks/base/core/res/res/values/
config.xml 28 Sets the package names whose certificates should be used to
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/jcajce/
JcaCertStore.java 15 * Class for storing Certificates for later lookup.
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/isismtt/
ISISMTTObjectIdentifiers.java 59 * be used in new certificates in place of the extension/attribute
61 * compatibility with certificates already in use, SigG conforming
116 * of certificates, which MAY optionally be provided by certificate
201 * usability of the PKC too. Attribute certificates with restricting content
  /external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1-modules/tools/
x509dump.py 3 # Read ASN.1/PEM X.509 certificates on stdin, parse each into plain text,
  /external/google-tv-pairing-protocol/java/src/com/google/polo/ssl/
DummySSLServerSocketFactory.java 29 * certificates; ie, is all-trusting.
DummySSLSocketFactory.java 29 * certificates; ie, is all-trusting.

Completed in 1166 milliseconds

1 2 3 45 6 7 8 91011>>