Package ghidra.net
Class SSLContextInitializer
java.lang.Object
ghidra.net.SSLContextInitializer
- All Implemented Interfaces:
ModuleInitializer
,ExtensionPoint
,Runnable
Initialize the default SSLContext for use by all SSL connections (e.g., https).
It is the responsibility of the Application to properly invoke this initializer
to ensure that the default SSLContext is properly established. While HTTPS URL connections
will make use of this default SSLContext, other SSL connections may need to
specify the
ApplicationSSLSocketFactory
to leverage the applications
default SSLContext.
The property jdk.tls.client.protocols
should be set to restrict secure
client connections to a specific set of enabled TLS protocols (e.g., TLSv1.2,TLSv1.3).
See JDK and JRE Cryptographic Algorithms
for details.
- See Also:
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic class
HttpsHostnameVerifier
is required by HttpsURLConnection even if it does nothing. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptiongetName()
static boolean
Initialize default SSLContextstatic boolean
initialize
(boolean reset) Initialize default SSLContext with optional reset.void
run()
-
Constructor Details
-
SSLContextInitializer
public SSLContextInitializer()
-
-
Method Details
-
initialize
public static boolean initialize(boolean reset) Initialize default SSLContext with optional reset. This method is primarily intended for testing.- Parameters:
reset
- if true a complete reset will be done to force use of any new certificate or keystores previously used.- Returns:
- true if successful, else false (see logged error)
-
initialize
public static boolean initialize()Initialize default SSLContext- Returns:
- true if successful, else false (see logged error)
-
run
public void run() -
getName
- Specified by:
getName
in interfaceModuleInitializer
- Returns:
- initializer name
-