Class BoringSSLContextOption<T>
java.lang.Object
io.netty.util.AbstractConstant<SslContextOption<T>>
io.netty.handler.ssl.SslContextOption<T>
io.netty.handler.codec.quic.BoringSSLContextOption<T>
- Type Parameters:
T- the type of the value.
- All Implemented Interfaces:
Constant<SslContextOption<T>>, Comparable<SslContextOption<T>>
SslContextOptions that are specific to BoringSSL.-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final BoringSSLContextOption<Set<String>> Set the supported client key/certificate types used in BoringSSLCertificateCallbackstatic final BoringSSLContextOption<String[]> Set the groups that should be used.static final BoringSSLContextOption<Map<String, String>> Set the supported server key/certificate types used in BoringSSLCertificateCallbackstatic final BoringSSLContextOption<String[]> Set the signature algorithms that should be used. -
Method Summary
Methods inherited from class SslContextOption
exists, validate, valueOf, valueOf
-
Field Details
-
GROUPS
Set the groups that should be used. This will override curves set with-Djdk.tls.namedGroups. -
SIGNATURE_ALGORITHMS
Set the signature algorithms that should be used.See SSL_CTX_set1_sigalgs.
-
CLIENT_KEY_TYPES
Set the supported client key/certificate types used in BoringSSLCertificateCallback -
SERVER_KEY_TYPES
Set the supported server key/certificate types used in BoringSSLCertificateCallback
-