Class IdentityCipherSuiteFilter
java.lang.Object
io.netty.handler.ssl.IdentityCipherSuiteFilter
- All Implemented Interfaces:
CipherSuiteFilter
This class will not do any filtering of ciphers suites.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final IdentityCipherSuiteFilterDefaults to default ciphers when provided ciphers are nullstatic final IdentityCipherSuiteFilterDefaults to supported ciphers when provided ciphers are null -
Method Summary
-
Field Details
-
INSTANCE
Defaults to default ciphers when provided ciphers are null -
INSTANCE_DEFAULTING_TO_SUPPORTED_CIPHERS
Defaults to supported ciphers when provided ciphers are null
-
-
Method Details
-
filterCipherSuites
public String[] filterCipherSuites(Iterable<String> ciphers, List<String> defaultCiphers, Set<String> supportedCiphers) Description copied from interface:CipherSuiteFilterFilter the requestedciphersbased upon other cipher characteristics.- Specified by:
filterCipherSuitesin interfaceCipherSuiteFilter- Parameters:
ciphers- The requested ciphersdefaultCiphers- The default recommended ciphers for the currentSSLEngineas determined by NettysupportedCiphers- The supported ciphers for the currentSSLEngine- Returns:
- The filter list of ciphers. Must not return
null.
-