91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么在java中使用Base64進行加密與解密

發布時間:2021-03-15 17:10:47 來源:億速云 閱讀:300 作者:Leah 欄目:開發技術

怎么在java中使用Base64進行加密與解密?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

Base64加密與解密操作

package cn.mldn.demo;
import java.util.Base64;
public class JavaAPIDemo{
  public static void main(String[] args) throws Exception{
   String msg="www.mldn.cn";   //原始內容
   String encMsg=new String(Base64.getEncoder().encode(msg.getBytes()));//數據加密
   System.out.println(encMsg);    //輸出密文
   String oldMsg=new String(Base64.getDecoder().decode(encMsg)); //數據解密
   System.out.println(oldMsg); //輸出明文
  }
}

程序執行結果:
d3d3Lm1sZG4uY24=(密文)
www.mldn.cn(明文)

本程序直接利用Base64提供的方法獲取了Base64.Encoder與Base64.Decoder實例化對象,并且對原始數據進行了加密與解密處理。但需要注意的是,由于Base64屬于JDK的原始實現,所以單純地加密是不安全的,此時為了獲取更加安全的數據加密操作,可以利用鹽值(salt)、自定義格式以及多次加密的方式來保證項目中的數據安全。

基于Base64定義復雜加密與解密操作

package cn.mldn.demo;
import java.util.Base64;

class StringUtil
{
	private static final String SALT="mldnjava"; //公共的鹽值
	private static final int REPEAT=5;  //加密次數
	
	public static String encode(String str) {  //加密處理		
										
		String temp=str+"{"+SALT+"}";				//鹽值對外不公布
		byte data[]=temp.getBytes();				//將字符串變為字節數組
		for(int x=0;x<REPEAT;x++)
			data=Base64.getEncoder().encode(data); //重復加密
		return new String(data);  //返回加密后的內容
	}
	
	public static String decode(String str) {
		byte data[]=str.getBytes();					//獲取加密內容
		for(int x=0;x<REPEAT;x++)
			data=Base64.getDecoder().decode(data); //多次解密
		return new String(data).replaceAll("\\{\\w+\\}",""); //刪除鹽值格式
	}
} 

public class JavaAPIDemo{
 public static void main(String[] args) throws Exception{
  String str=StringUtil.encode("www.mldn.cn");
  System.out.println(StringUtil.decode(str));
 }
 
}


關于怎么在java中使用Base64進行加密與解密問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

绵阳市| 耿马| 大丰市| 昌吉市| 平泉县| 铜山县| 海安县| 马公市| 津市市| 镇宁| 华阴市| 宝清县| 搜索| 桐柏县| 托克逊县| 霍邱县| 汕尾市| 方正县| 利川市| 台北市| 天气| 武邑县| 靖安县| 阳新县| 武功县| 澜沧| 龙江县| 石嘴山市| 来安县| 石狮市| 体育| 米脂县| 三门峡市| 江都市| 哈巴河县| 河池市| 禹城市| 岢岚县| 建始县| 普格县| 乐安县|