All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.muserver.SSLCipherFilter Maven / Gradle / Ivy

There is a newer version: 2.0.3
Show newest version
package io.muserver;

import java.util.List;
import java.util.Set;

/**
 * A filter allowing the selection of SSL certificates
 */
public interface SSLCipherFilter {

    /**
     * A method that returns the ciphers desired in the preferred order of use.
     * @param supportedCiphers All the ciphers supported, including insecure ones.
     * @param defaultCiphers The default ciphers, as determined by the JDK.
     * @return A list of ciphers to use.
     */
    List selectCiphers(Set supportedCiphers, List defaultCiphers);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy