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

com.lehuipay.leona.contracts.SymmetricEncryptor Maven / Gradle / Ivy

package com.lehuipay.leona.contracts;

/**
 * 对称加密
 */
public interface SymmetricEncryptor {

    String encrypt(byte[] body, String secretKey);

    byte[] decrypt(String body, byte[] secretKey);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy