微信小程序之解密微信运动数据

package com.zgrb.utils;

import java.security.Security;

import org.apache.commons.codec.binary.Base64;
import org.bouncycastle.jce.provider.BouncyCastleProvider;
import javax.crypto.BadPaddingException;
import javax.crypto.Cipher;
import javax.crypto.IllegalBlockSizeException;
import javax.crypto.NoSuchPaddingException;
import javax.crypto.spec.IvParameterSpec;
import javax.crypto.spec.SecretKeySpec;
import java.io.UnsupportedEncodingException;
import java.security.*;
import java.security.spec.InvalidParameterSpecException;

public class AesCbcUtil {    
 static {        
  //BouncyCastle是一个开源的加解密解决方案,主页在http://www.bouncycastle.org/        
  Security.addProvider(new BouncyCastleProvider());    
 }        
 public static String decrypt(String data, String key, String iv) throws Exception {
  //        initialize();         //被加密的数据        
  byte[] dataByte = Base64.decodeBase64(data);        
  //加密秘钥        
  byte[] keyByte = Base64.decodeBase64(key);        
  //偏移量        
  byte[] ivByte = Base64.decodeBase64(iv);        
  try {            
   Cipher cipher = Cipher.getInstance("AES/CBC/PKCS7Padding");            
   SecretKeySpec spec = new SecretKeySpec(keyByte, "AES");            
   AlgorithmParameters parameters = AlgorithmParameters.getInstance("AES");            
   parameters.init(new IvParameterSpec(ivByte));            
   cipher.init(Cipher.DECRYPT_MODE, spec, parameters);
   // 初始化            
   byte[] resultByte = cipher.doFinal(dataByte);            
   if (null != resultByte && resultByte.length > 0) {                
    String result = new String(resultByte, "UTF-8");                
    return result;           
   }           
   return null;        
  } catch (NoSuchAlgorithmException e) {            
   e.printStackTrace();        
  } catch (NoSuchPaddingException e) {            
   e.printStackTrace();        
  } catch (InvalidParameterSpecException e) {            
   e.printStackTrace();        
  } catch (InvalidKeyException e) {            
   e.printStackTrace();        
  } catch (InvalidAlgorithmParameterException e) {            
   e.printStackTrace();        
  } catch (IllegalBlockSizeException e) {            
   e.printStackTrace();        
  } catch (BadPaddingException e) {            
   e.printStackTrace();        
  } catch (UnsupportedEncodingException e) {            
   e.printStackTrace();        
  }        
  return null;
 }
}

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值