Home | History | Annotate | Download | only in http

Lines Matching refs:certificate

23  * 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) {
91 this(error, certificate, "");
95 * Creates a new SslError object using the supplied error and certificate.
98 * @param certificate The associated SSL certificate
102 public SslError(int error, X509Certificate certificate) {
103 this(error, certificate, "");
107 * Creates a new SslError object using the supplied error, certificate and
110 * @param certificate The associated SSL certificate
113 public SslError(int error, SslCertificate certificate, String url) {
114 assert certificate != null;
117 mCertificate = certificate;
122 * Creates a new SslError object using the supplied error, certificate and
125 * @param certificate The associated SSL certificate
128 public SslError(int error, X509Certificate certificate, String url) {
129 this(error, new SslCertificate(certificate), url);
135 * @param certificate The associated SSL certificate
155 * Gets the SSL certificate associated with this object.
156 * @return The SSL certificate, non-null.
225 " certificate: " + getCertificate() +