AES对称加密

public class AES {
   
   private static final String KEY = "99ssavv";
         
       /** 
        * base 64 encode 
        * @param bytes 待编码的byte[] 
        * @return 编码后的base 64 code 
        */  
       public static String base64Encode(byte[] bytes){  
           return new BASE64Encoder().encode(bytes);  
       }  
         
       /** 
        * base 64 decode 
        * @param base64Code 待解码的base 64 code 
        * @return 解码后的byte[] 
        * @throws Exception 
        */  
       public static byte[] base64Decode(String base64Code) throws Exception{  
           return StringUtils.isEmpty(base64Code) ? null : new BASE64Decoder().decodeBuffer(base64Code);  
       }  

       /** 
        * AES加密 
        * @param content 待加密的内容 
        * @return 加密后的byte[]
        * @throws Exception 
        */  
       public static byte[] aesEncryptToBytes(String content) throws Exception {  
          SecureRandom random = SecureRandom.getInstance("SHA1PRNG");
           random.setSeed(KEY.getBytes());
           KeyGenerator kgen = KeyGenerator.getInstance("AES");  
           kgen.init(128, random);   
     
           Cipher cipher = Cipher.getInstance("AES");  
           cipher.init(Cipher.ENCRYPT_MODE, new SecretKeySpec(kgen.generateKey().getEncoded(), "AES"));  
             
           return cipher.doFinal(content.getBytes("utf-8"));  
       }  
         
       /** 
        * AES加密为base 64 code 
        * @param content 待加密的内容 
        * @return 加密后的base 64 code 
        * @throws Exception 
        */  
       public static String aesEncrypt(String content) throws Exception {  
           return base64Encode(aesEncryptToBytes(content));  
       }  
         
       /** 
        * AES解密 
        * @param encryptBytes 待解密的byte[] 
        * @return 解密后的String 
        * @throws Exception 
        */  
       public static String aesDecryptByBytes(byte[] encryptBytes) throws Exception {  
           
           SecureRandom random = SecureRandom.getInstance("SHA1PRNG");
           random.setSeed(KEY.getBytes());
           KeyGenerator kgen = KeyGenerator.getInstance("AES");  
           kgen.init(128, random);  
           
           Cipher cipher = Cipher.getInstance("AES");  
           cipher.init(Cipher.DECRYPT_MODE, new SecretKeySpec(kgen.generateKey().getEncoded(), "AES"));  
           byte[] decryptBytes = cipher.doFinal(encryptBytes);  
             
           return new String(decryptBytes);  
       }  
         
       /** 
        * base 64 code AES解密 
        * @param encryptStr 待解密的base 64 code 
        * @return 解密后的string 
        * @throws Exception 
        */  
       public static String aesDecrypt(String encryptStr) throws Exception {  
           return StringUtils.isEmpty(encryptStr) ? null : aesDecryptByBytes(base64Decode(encryptStr));  
       }  
         
       
	public static void main(String[] args) throws Exception {
   		String content = "oQ906uPAbia-uuIH3u4vBS9t_05U";
   		System.out.println("加密前:"+content);
   		String encryptStr =aesEncrypt(content);
       		System.out.println("加密后:"+encryptStr);
       		System.out.println("解密后:"+aesDecrypt(encryptStr));
	}
}

执行main方法:

加密前:oQ906uPAbia-uuIH3u4vBS9t_05U
加密后:L2iC6aItPTAMvfGTeY9EF3Va8EUWoLlqGUrgBvZWLaE=
解密后:oQ906uPAbia-uuIH3u4vBS9t_05U



  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
以下是使用Python实现AES对称加密算法的示例代码: ```python from Crypto.Cipher import AES import base64 # 加密函数 def encrypt(text, key): # 将密钥转换为16字节长度的bytes类型 key = key.encode('utf-8') key = key.ljust(16, b'\0') # 将明文转换为bytes类型 text = text.encode('utf-8') # 使用AES加密算法进行加密 cipher = AES.new(key, AES.MODE_ECB) encrypted_text = cipher.encrypt(text) # 将加密后的bytes类型数据转换为base64编码的字符串 encrypted_text = base64.b64encode(encrypted_text).decode('utf-8') return encrypted_text # 解密函数 def decrypt(encrypted_text, key): # 将密钥转换为16字节长度的bytes类型 key = key.encode('utf-8') key = key.ljust(16, b'\0') # 将密文转换为bytes类型 encrypted_text = base64.b64decode(encrypted_text) # 使用AES加密算法进行解密 cipher = AES.new(key, AES.MODE_ECB) decrypted_text = cipher.decrypt(encrypted_text) # 将解密后的bytes类型数据转换为字符串 decrypted_text = decrypted_text.decode('utf-8') return decrypted_text # 测试 text = 'Hello, world!' key = '1234567890123456' encrypted_text = encrypt(text, key) print('加密后的密文:', encrypted_text) decrypted_text = decrypt(encrypted_text, key) print('解密后的明文:', decrypted_text) ``` 上述代码使用了Python的`Crypto`库实现了AES对称加密算法。其中,`encrypt`函数用于加密明文,`decrypt`函数用于解密密文。在加密和解密过程中,需要使用相同的密钥。在本例中,密钥为16字节长度的字符串。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值