java⼩程序步数encryptedData和开放数据解密的实
现
前提:
三个参数,
1.sessionKey(拿openId的时候可以得到)
3.iv(前端提供)
⼀个类,⼀个⽅法。
1.类:
import java.nio.charset.Charset;
import java.util.Arrays;
/
**
* ⼩程序加解密
* @author liuyazhuang
*
*/
public class WxPKCS7Encoder {
private static final Charset CHARSET = Charset.forName("utf-8");
private static final int BLOCK_SIZE = 32;
/**
* 获得对明⽂进⾏补位填充的字节.
*
* @param count
* 需要进⾏填充补位操作的明⽂字节个数
* @return 补齐⽤的字节数组
*/
public static byte[] encode(int count) {
// 计算需要填充的位数
int amountToPad = BLOCK_SIZE - (count % BLOCK_SIZE);
if (amountToPad == 0) {
amountToPad = BLOCK_SIZE;
}
// 获得补位所⽤的字符
char padChr = chr(amountToPad);
String tmp = new String();
for (int index = 0; index < amountToPad; index++) {
tmp += padChr;
}
Bytes(CHARSET);
}
/**
* 删除解密后明⽂的补位字符
*
* @param decrypted
* 解密后的明⽂
* @return 删除补位字符后的明⽂
*/
public static byte[] decode(byte[] decrypted) {
int pad = decrypted[decrypted.length - 1];
if (pad < 1 || pad > 32) {
pad = 0;
}
pyOfRange(decrypted, 0, decrypted.length - pad);
}
/**
* 将数字转化成ASCII码对应的字符,⽤于对明⽂进⾏补码
*
* @param a
* 需要转化的数字
* @return 转化得到的字符
*/
public static char chr(int a) {
byte target = (byte) (a & 0xFF);
return (char) target;
有趣的java小程序}
}
2.⽅法:
import java.io.UnsupportedEncodingException;
import java.security.AlgorithmParameters;
import java.security.InvalidAlgorithmParameterException;
import java.security.InvalidKeyException;
import java.security.NoSuchAlgorithmException;
import java.security.Security;
import java.security.spec.InvalidParameterSpecException;
import java.util.HashMap;
import javax.annotation.Resource;
pto.BadPaddingException;
pto.Cipher;
pto.IllegalBlockSizeException;
pto.NoSuchPaddingException;
pto.spec.IvParameterSpec;
pto.spec.SecretKeySpec;
import dec.binary.Base64;
import org.apachemons.lang3.StringUtils;
import org.bouncycastle.jce.provider.BouncyCastleProvider;
slf4j.Slf4j;
@Slf4j
public class AesCbcUtil {
static {
//BouncyCastle是⼀个开源的加解密解决⽅案,主页在/
Security.addProvider(new BouncyCastleProvider());
}
/**
* AES解密
*
* @param data //密⽂,被加密的数据
* @param key //秘钥
* @param iv //偏移量
* @param encodingFormat //解密后的结果需要进⾏的编码
* @param type //0 是其他 1是步数
* @return
* @throws Exception
*/
public static String decrypt(String data, String key, String iv, String encodingFormat,Integer type) throws Exception { // initialize();
if(StringUtils.isEmpty(data)||StringUtils.isEmpty(key)||StringUtils.isEmpty(iv))
throw new SkyParamNullException("⼩程序获取⽤户信息参数不能为空");
//被加密的数据
byte[] dataByte = Base64.decodeBase64(data);
//加密秘钥
byte[] keyByte = Base64.decodeBase64(key);
//偏移量
byte[] ivByte = Base64.decodeBase64(iv);
try {
Cipher cipher = Instance("AES/CBC/PKCS7Padding");
SecretKeySpec spec = new SecretKeySpec(keyByte, "AES");
AlgorithmParameters parameters = Instance("AES");
parameters.init(new IvParameterSpec(ivByte));
cipher.init(Cipher.DECRYPT_MODE, spec, parameters);// 初始化
byte[] resultByte = cipher.doFinal(dataByte);
if (null != resultByte && resultByte.length > 0) {
if (type==1){
return new String(WxPKCS7Encoder.decode(resultByte));
}else {
return new String(resultByte, encodingFormat);
}
}
return null;
} catch (NoSuchAlgorithmException e) {
e.printStackTrace();
<("⼩程序解析出错1{}",e.getMessage());
} catch (NoSuchPaddingException e) {
e.printStackTrace();
<("⼩程序解析出错2{}",e.getMessage());
} catch (InvalidParameterSpecException e) {
e.printStackTrace();
<("⼩程序解析出错3{}",e.getMessage());
} catch (InvalidKeyException e) {
e.printStackTrace();
<("⼩程序解析出错4{}",e.getMessage());
} catch (InvalidAlgorithmParameterException e) {
e.printStackTrace();
<("⼩程序解析出错5{}",e.getMessage());
} catch (IllegalBlockSizeException e) {
e.printStackTrace();
<("⼩程序解析出错6{}",e.getMessage());
} catch (BadPaddingException e) {
e.printStackTrace();
<("⼩程序解析出错7{}",e.getMessage());
}
catch (UnsupportedEncodingException e) {
e.printStackTrace();
<("⼩程序解析出错8{}",e.getMessage());
}
return null;
}
}
实现
@ApiOperation(value = "wx步数解密")
@PostMapping(value = "/decode")
public ResultModel<Object> questionList(@RequestBody WxSportParam param) throws Exception {
HashMap<String, Object> map = WxOpenId(//这个⽅法⽹上很多,没有就⽤binarywang的
,WxAppId()//appID
,WxAppSecret());//secret
String sessionKey = ("session_key").toString();
String result = AesCbcUtil.Data(), Iv(), "UTF-8",1);
return ResultModel.success(result);
}
出来的数据:
{ “stepInfoList”: [
{
“timestamp”: 1445866601,
“step”: 100
},
{
“timestamp”: 1445876601,
“step”: 120
} ] }
tips:如果是解析⽤户信息的话⼀样的⽤法,解密decrypt中参数type传0。两者区别在于字节的decode⽅法不⼀样⽽已。到此这篇关于java⼩程序步数encryptedData和开放数据解密的实现的⽂章就介绍到这了,更多相关java⼩程序步数encryptedData内容请搜索以前的⽂章或继续浏览下⾯的相关⽂章希望⼤家以后多多⽀持!
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论