Uses of Class
org.miaixz.bus.http.secure.CertificatePinner
Packages that use CertificatePinner
Package
Description
An HTTP client for Java applications.
Provides a fluent, builder-based API (Httpz) for making HTTP requests, simplifying interactions with the core
Httpd client.Provides classes for managing security-related aspects of HTTP, including TLS/SSL configuration, authentication, and
certificate pinning.
-
Uses of CertificatePinner in org.miaixz.bus.http
Methods in org.miaixz.bus.http that return CertificatePinnerModifier and TypeMethodDescriptionAddress.certificatePinner()Returns the certificate pinner for this address, or null if this is not an HTTPS address.Httpd.certificatePinner()Returns the certificate pinner used to constrain trusted certificates.Methods in org.miaixz.bus.http with parameters of type CertificatePinnerModifier and TypeMethodDescriptionHttpd.Builder.certificatePinner(CertificatePinner certificatePinner) Sets the certificate pinner that constrains which certificates are trusted.Constructors in org.miaixz.bus.http with parameters of type CertificatePinnerModifierConstructorDescriptionAddress(String uriHost, int uriPort, DnsX dns, SocketFactory socketFactory, SSLSocketFactory sslSocketFactory, HostnameVerifier hostnameVerifier, CertificatePinner certificatePinner, Authenticator proxyAuthenticator, Proxy proxy, List<org.miaixz.bus.core.net.Protocol> protocols, List<ConnectionSuite> connectionSuites, ProxySelector proxySelector) Constructs a new Address. -
Uses of CertificatePinner in org.miaixz.bus.http.plugin.httpz
Methods in org.miaixz.bus.http.plugin.httpz with parameters of type CertificatePinnerModifier and TypeMethodDescriptionHttpBuilder.certificatePinner(CertificatePinner certificatePinner) Sets the certificate pinner used to constrain which certificates are trusted. -
Uses of CertificatePinner in org.miaixz.bus.http.secure
Fields in org.miaixz.bus.http.secure declared as CertificatePinnerModifier and TypeFieldDescriptionstatic final CertificatePinnerCertificatePinner.DEFAULTA default certificate pinner that trusts any certificate chain.Methods in org.miaixz.bus.http.secure that return CertificatePinnerModifier and TypeMethodDescriptionCertificatePinner.Builder.build()Builds theCertificatePinnerwith the configured pins.CertificatePinner.withCertificateChainCleaner(CertificateChainCleaner certificateChainCleaner) Returns a new certificate pinner that usescertificateChainCleaner.