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

cn.schoolwow.ssh.layer.transport.SSHAlgorithm Maven / Gradle / Ivy

package cn.schoolwow.ssh.layer.transport;

public interface SSHAlgorithm {
    /**
     * 是否匹配该算法
     * @param algorithmName 算法名称
     * */
    boolean matchAlgorithm(String algorithmName);

    /**
     * 支持算法名称列表
     * @param algorithmName 算法名称
     * */
    String[] algorithmNameList();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy