加解密

Posted 岁月峥嵘走过

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了加解密相关的知识,希望对你有一定的参考价值。

    }
    
    /**
     * DES加密<br>
     * 
     * @author : chenssy
     * @date : 2016年5月20日 下午5:39:46
     *
     * @param value
     *                 待加密字符
     * @param key    
     *                 若key为空,则使用默认key
     * @return
     *             加密成功返回密文,否则返回null
     */
    public static String desEncrypt(String value,String key){
        key = key == null ? DESUtils.KEY : key;
        String result = null;
        
        try {
            if(value != null && !"".equals(value.trim())){
                result = DESUtils.encrypt(value, key);
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
        return result;
    }
    
    /**
     * DES解密
     * 
     * @author : chenssy
     * @date : 2016年5月20日 下午5:55:56
     *
     * @param value
     *                 待解密字符
     * @param key    
     *                 若key为空,则使用默认key
     * @return
     * @return
     */
    public static String desDecrypt(String value,String key){
        key = key == null ? DESUtils.KEY : key;
        String result = null;
        
        try {
            if(value != null && !"".equals(value.trim())){
                result =  DESUtils.decrypt(value, key);
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
        return result;
    }
    
    /**
     * AES加密
     *
     * @author:chenssy
     * @date : 2016年5月21日 上午9:58:58
     *
     * @param value
     *                     待加密内容
     * @param key
     *                     秘钥
     * @return
     */
    public static String aesEncrypt(String value,String key ){
        key = key == null ? AESUtils.KEY : key;
        String result = null;
        try {
            if(value != null && !"".equals(value.trim())){        //value is not null
                result = AESUtils.encrypt(value,key);
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
        
        return result;
    }
    
    /**
     * AES解密
     * 
     * @author:chenssy
     * @date : 2016年5月21日 上午10:02:07
     *
     * @param value
     *                 待解密内容
     * @param key
     *                 秘钥
     * @return
     */
    public static String aesDecrypt(String value , String key){
        key = key == null ? AESUtils.KEY : key;
        String result = null;
        try {
            if(value != null && !"".equals(value.trim())){        //value is not null
                result = AESUtils.decrypt(value,key);
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
        
        return result;

以上是关于加解密的主要内容,如果未能解决你的问题,请参考以下文章

Xxtea加解密

java,rsa加解密在本地正常,部署到tomcat上加解密后出现乱码。

MD5加解密代码

MD5加解密代码

Spring Boot 整合 Jasypt 加解密实战

加解密专辑对接触到的PGPRSAAES加解密算法整理