Package org.somda.sdc.dpws.crypto
Class CryptoConfig
- java.lang.Object
-
- org.somda.sdc.dpws.crypto.CryptoConfig
-
public class CryptoConfig extends Object
Configuration keys for cryptographic components.- See Also:
DefaultDpwsConfigModule
-
-
Field Summary
Fields Modifier and Type Field Description static StringCRYPTO_CLIENT_HOSTNAME_VERIFIERHostname verifier called on new connections in the http client.static StringCRYPTO_DEVICE_HOSTNAME_VERIFIERHostname verifier called on new connections in the http server.static StringCRYPTO_SETTINGSUsed to retrieve SSL configuration.static StringCRYPTO_TLS_ENABLED_CIPHERSCiphers enabled for secure communication, support may depend on used libraries.static StringCRYPTO_TLS_ENABLED_VERSIONSProtocols enabled for secure communication, support may depend on used libraries.
-
Constructor Summary
Constructors Constructor Description CryptoConfig()
-
-
-
Field Detail
-
CRYPTO_SETTINGS
public static final String CRYPTO_SETTINGS
Used to retrieve SSL configuration.- Data type:
CryptoSettings - Use: optional
- See Also:
- Constant Field Values
- Data type:
-
CRYPTO_TLS_ENABLED_VERSIONS
public static final String CRYPTO_TLS_ENABLED_VERSIONS
Protocols enabled for secure communication, support may depend on used libraries.- Data type: array of
String - Use: optional
- See Also:
- Constant Field Values
- Data type: array of
-
CRYPTO_TLS_ENABLED_CIPHERS
public static final String CRYPTO_TLS_ENABLED_CIPHERS
Ciphers enabled for secure communication, support may depend on used libraries.Uses the IANA notation for ciphers!
- Data type: array of
String - Use: optional
- See Also:
- Constant Field Values
- Data type: array of
-
CRYPTO_CLIENT_HOSTNAME_VERIFIER
public static final String CRYPTO_CLIENT_HOSTNAME_VERIFIER
Hostname verifier called on new connections in the http client.- Data type:
HostnameVerifier - Use: optional
- See Also:
- Constant Field Values
- Data type:
-
CRYPTO_DEVICE_HOSTNAME_VERIFIER
public static final String CRYPTO_DEVICE_HOSTNAME_VERIFIER
Hostname verifier called on new connections in the http server.- Data type:
HostnameVerifier - Use: optional
- See Also:
- Constant Field Values
- Data type:
-
-