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

com.fastchar.interfaces.IFastSecurityProvider Maven / Gradle / Ivy

package com.fastchar.interfaces;

import com.fastchar.annotation.AFastPriority;
import com.fastchar.core.FastConstant;

@AFastPriority
public interface IFastSecurityProvider {

    String MD5_Encrypt(String value);

    String AES_Encrypt(String value);

    String AES_Decrypt(String value);

    String RSA_Encrypt(String value);

    String RSA_Decrypt(String value);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy