Interface KeyLoader
public interface KeyLoader
A Java class used to load private keys must implement this interface
and have a constructor that takes no parameters.
-
Field Details
-
KEY_LOADER_RETURN_KEY_MANAGERS
- See Also:
-
KEY_LOADER_RETURN_TRUST_MANAGERS
- See Also:
-
-
Method Details
-
loadKeys
This gets called when Gallium Data starts up. It must return one or more keys.- Parameters:
params
- The name/value parameters for the key loader (currently null, will be provided in future release)- Returns:
- A map that may contain:
- for KEY_LOADER_RETURN_KEY_MANAGER, an array of javax.net.ssl.KeyManager
- for KEY_LOADER_RETURN_TRUST_MANAGER, an array of javax.net.ssl.TrustManager
-