Package org.ldaptive.ssl
Interface CertificateHostnameVerifier
- All Known Implementing Classes:
AllowAnyHostnameVerifier
,DefaultHostnameVerifier
public interface CertificateHostnameVerifier
Interface for verifying a hostname matching a certificate.
-
Method Summary
Modifier and TypeMethodDescriptionboolean
verify
(String hostname, X509Certificate cert) Verify the supplied hostname matches the supplied certificate.
-
Method Details
-
verify
Verify the supplied hostname matches the supplied certificate.- Parameters:
hostname
- to verifycert
- to verify hostname against- Returns:
- whether hostname is valid for the supplied certificate
-