AllowAllHostnameVerifier
open classAllowAllHostnameVerifier: AbstractVerifier
| kotlin.Any | ||
| ↳ | org.apache.http.conn.ssl.AbstractVerifier | |
| ↳ | org.apache.http.conn.ssl.AllowAllHostnameVerifier | |
The ALLOW_ALL HostnameVerifier essentially turns hostname verification off. This implementation is a no-op, and never throws the SSLException.
Summary
| Public constructors | |
|---|---|
| Public methods | |
|---|---|
| String |
toString()Returns a string representation of the object. |
| Unit |
Checks to see if the supplied hostname matches any of the supplied CNs or "DNS" Subject-Alts. |
| Inherited functions | |
|---|---|
Public constructors
AllowAllHostnameVerifier
AllowAllHostnameVerifier()
Public methods
toString
funtoString(): String
Deprecated: Deprecated in Java.
Returns a string representation of the object.
| Return | |
|---|---|
String |
a string representation of the object. |
verify
funverify(
host: String!,
cns: Array<String!>!,
subjectAlts: Array<String!>!
): Unit
Deprecated: Deprecated in Java.
Checks to see if the supplied hostname matches any of the supplied CNs or "DNS" Subject-Alts. Most implementations only look at the first CN, and ignore any additional CNs. Most implementations do look at all of the "DNS" Subject-Alts. The CNs or Subject-Alts may contain wildcards according to RFC 2818.
| Parameters | |
|---|---|
host |
String!: The hostname to verify. |
cns |
Array<String!>!: CN fields, in order, as extracted from the X.509 certificate. |
subjectAlts |
Array<String!>!: Subject-Alt fields of type 2 ("DNS"), as extracted from the X.509 certificate. |
| Exceptions | |
|---|---|
javax.net.ssl.SSLException |
If verification failed. |