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

spring.turbo.util.crypto.TripleDES Maven / Gradle / Ivy

package spring.turbo.util.crypto;

/**
 * 3DES加密解密工具
 *
 * @author 应卓
 * @see #builder()
 * @since 3.2.6
 */
@Deprecated(since = "3.3.1")
public interface TripleDES {

    public static TripleDESBuilder builder() {
        return new TripleDESBuilder();
    }

    public String encrypt(String input);

    public String decrypt(String cipherText);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy