类 | 说明 |
---|---|
Base64 |
Provides Base64 encoding and decoding as defined by RFC 2045.
|
Charsets |
Helps dealing with Charsets.
|
KeyManagerUtils |
General KeyManager utilities
How to use with a client certificate:
KeyManager km = KeyManagerUtils.createClientKeyManager("JKS",
"/path/to/privatekeystore.jks","storepassword",
"privatekeyalias", "keypassword");
FTPSClient cl = new FTPSClient();
cl.setKeyManager(km);
cl.connect(...);
If using the default store type and the key password is the same as the
store password, these parameters can be omitted.
|
ListenerList | |
SSLContextUtils |
General utilities for SSLContext.
|
SSLSocketUtils |
General utilities for SSLSocket.
|
SubnetUtils |
A class that performs some subnet calculations given a network address and a subnet mask.
|
TrustManagerUtils |
TrustManager utilities for generating TrustManagers.
|