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

com.ideaaedi.commonds.constants.AlgorithmConstant Maven / Gradle / Ivy

The newest version!
package com.ideaaedi.commonds.constants;

/**
 * 算法常量类
 *
 * @author JustryDeng 
 * @since 1.0.0
 */
public interface AlgorithmConstant {
    
    /** AES算法 */
    String AES = "AES";
    
    /** RSA算法 */
    String RSA = "RSA";
    
    /** AES算法GCM模式NoPadding填充 */
    String AES_GCM_NoPadding = "AES/GCM/NoPadding";
    
    /** AES算法ECB模式PKCS5Padding填充 */
    String AES_ECB_PKCS5Padding = "AES/ECB/PKCS5Padding";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy