Package io.muserver
Interface SSLCipherFilter
-
public interface SSLCipherFilterA filter allowing the selection of SSL certificates
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<java.lang.String>selectCiphers(java.util.Set<java.lang.String> supportedCiphers, java.util.List<java.lang.String> defaultCiphers)A method that returns the ciphers desired in the preferred order of use.
-
-
-
Method Detail
-
selectCiphers
java.util.List<java.lang.String> selectCiphers(java.util.Set<java.lang.String> supportedCiphers, java.util.List<java.lang.String> defaultCiphers)A method that returns the ciphers desired in the preferred order of use.- Parameters:
supportedCiphers- All the ciphers supported, including insecure ones.defaultCiphers- The default ciphers, as determined by the JDK.- Returns:
- A list of ciphers to use.
-
-