Searched defs:certificate (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/core/java/android/net/http/
H A DHttpsConnection.java149 * Sets the server SSL certificate associated with this
151 * @param certificate The SSL certificate
153 /* package */ void setCertificate(SslCertificate certificate) { argument
154 mCertificate = certificate;
317 // allow the certificate anyway.
H A DLoggingEventHandler.java72 public void certificate(SslCertificate certificate) { argument
74 HttpLog.v("LoggingEventHandler: certificate(): " + certificate);
H A DSslError.java23 * certificate.
32 * The certificate is not yet valid
36 * The certificate has expired
44 * The certificate authority is not trusted
48 * The date of the certificate is invalid
73 * The SSL certificate associated with the error set
83 * Creates a new SslError object using the supplied error and certificate.
86 * @param certificate The associated SSL certificate
90 public SslError(int error, SslCertificate certificate) { argument
102 SslError(int error, X509Certificate certificate) argument
113 SslError(int error, SslCertificate certificate, String url) argument
128 SslError(int error, X509Certificate certificate, String url) argument
[all...]
H A DEventHandler.java24 * there is an SSL certificate error. error() can occur anywhere
109 * SSL certificate callback called before resource request is
112 public void certificate(SslCertificate certificate); argument
122 * SSL certificate error callback. Handles SSL error(s) on the way
H A DSslCertificate.java43 * SSL certificate info (certificate details) class
53 * Name of the entity this certificate is issued to
58 * Name of the entity this certificate is issued by
73 * The original source certificate, if available.
88 private static final String X509_CERTIFICATE = "x509-certificate";
91 * Saves the certificate state to a bundle
92 * @param certificate The SSL certificate to store
93 * @return A bundle with the certificate store
95 saveState(SslCertificate certificate) argument
177 SslCertificate(X509Certificate certificate) argument
[all...]
/frameworks/base/tests/CoreTests/android/core/
H A DTestEventHandler.java445 * Implements the EventHandler certificate method called every
448 public void certificate(SslCertificate certificate) {} argument
496 * SSL certificate error callback. Handles SSL error(s) on the way
505 " certificate: " + error.getCertificate());
527 if (expectSslErrors == -1) // && expectSslCertificate == certificate?
730 public void expectSSLCertificateError(SslCertificate certificate) { argument
732 expectCertificate = certificate;
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiEnterpriseConfig.java388 * Set CA certificate alias.
391 * a certificate
393 * @param alias identifies the certificate
401 * Get CA certificate alias
402 * @return alias to the CA certificate
410 * Specify a X.509 certificate that identifies the server.
412 * <p>A default name is automatically assigned to the certificate and used
414 * certificate when the config is saved and removing the certificate when
417 * @param cert X.509 CA certificate
520 hasHardwareBackedKey(Certificate certificate) argument
[all...]
/frameworks/base/core/java/android/webkit/
H A DWebViewProvider.java80 public void setCertificate(SslCertificate certificate); argument
H A DWebView.java567 * Gets the SSL certificate for the main top-level page or null if there is
568 * no certificate (the site is not secure).
570 * @return the SSL certificate for the main top-level page
578 * Sets the SSL certificate for the main top-level page.
584 public void setCertificate(SslCertificate certificate) { argument
586 if (DebugFlags.TRACE_API) Log.d(LOGTAG, "setCertificate=" + certificate);
587 mProvider.setCertificate(certificate);
1406 * SSL certificate errors.
/frameworks/webview/chromium/java/com/android/webview/chromium/
H A DWebViewChromium.java375 public void setCertificate(SslCertificate certificate) { argument

Completed in 148 milliseconds