⼩程序后台解密⽤户数据实例详解
⼩程序后台解密⽤户数据实例详解
openId : ⽤户在当前⼩程序的唯⼀标识
⼀下是官⽅的流程
那么问题来了,代码怎么实现呢,以下是⽤java后台的实现
客户端的代码实现是这样的
wx.login({
success: function (r) {
if (r.code) {
var code = r.code;//登录凭证
if (code) {
/
/2、调⽤获取⽤户信息接⼝
success: function (res) {
//发起⽹络请求
url: that.data + '/decodeUser.json',
header: {
"content-type": "application/x-www-form-urlencoded"
},
method: "POST",
data: {
encryptedData: ptedData,
iv: res.iv,
code: code
},
success: function (result) {
// wx.setStorage({
//  key: 'openid',
//  data: res.data.openid,
// })
console.log(result)
}
})
},
fail: function () {
console.log('获取⽤户信息失败')
}
})
} else {
console.log('获取⽤户登录态失败!' + r.errMsg)
}
} else {
}
}
})
(服务端 java)⾃⼰的服务器发送code到服务器获取openid(⽤户唯⼀标识)和session_key(会话密钥),
最后将encryptedData、iv、session_key通过AES解密获取到⽤户敏感数据
1、获取秘钥并处理解密的controller
/**
* 解密⽤户敏感数据
*
* @param encryptedData 明⽂,加密数据
* @param iv      加密算法的初始向量
* @param code    ⽤户允许登录后,回调内容会带上 code(有效期五分钟),开发者需要将 code 发送到开发者服务器后台,使⽤code 换取 session_key api,将 code 换成 openid 和 session_key    * @return
*/
@ResponseBody
@RequestMapping(value = "/decodeUser", method = RequestMethod.POST)
public Map decodeUser(String encryptedData, String iv, String code) {
Map map = new HashMap();
//登录凭证不能为空
if (code == null || code.length() == 0) {
map.put("status", 0);
map.put("msg", "code 不能为空");
return map;
}
//⼩程序唯⼀标识  (在⼩程序管理后台获取)
String wxspAppid = "wxd8980e77d335c871";
//⼩程序的 app secret (在⼩程序管理后台获取)
String wxspSecret = "85d29ab4fa8c797423f2d7da5dd514cf";
//授权(必填)
String grant_type = "authorization_code";
//////////////// 1、向服务器使⽤登录凭证 code 获取 session_key 和 openid ////////////////
//请求参数
String params = "appid=" + wxspAppid + "&secret=" + wxspSecret + "&js_code=" + code + "&grant_type=" + grant_type;
//发送请求
String sr = HttpRequest.sendGet("api.weixin.qq/sns/jscode2session", params);
//解析相应内容(转换成json对象)
//获取会话密钥(session_key)
String session_key = ("session_key").toString();
//⽤户的唯⼀标识(openid)
String openid = (String) ("openid");
//////////////// 2、对encryptedData加密数据进⾏AES解密 ////////////////
try {
String result = AesCbcUtil.decrypt(encryptedData, session_key, iv, "UTF-8");
if (null != result && result.length() > 0) {
map.put("status", 1);
map.put("msg", "解密成功");
JSONObject userInfoJSON = JSONObject.fromObject(result);
Map userInfo = new HashMap();
userInfo.put("openId", ("openId"));
userInfo.put("nickName", ("nickName"));
userInfo.put("gender", ("gender"));
userInfo.put("city", ("city"));
userInfo.put("province", ("province"));
userInfo.put("country", ("country"));
userInfo.put("avatarUrl", ("avatarUrl"));
userInfo.put("unionId", ("unionId"));
map.put("userInfo", userInfo);
return map;
}
} catch (Exception e) {
e.printStackTrace();
}
map.put("status", 0);
map.put("msg", "解密失败");
return map;
}
解密⼯具类 AesCbcUtil
import dec.binary.Base64;
import org.bouncycastle.jce.provider.BouncyCastleProvider;
pto.BadPaddingException;
pto.Cipher;
pto.IllegalBlockSizeException;
pto.NoSuchPaddingException;
pto.spec.IvParameterSpec;
pto.spec.SecretKeySpec;
import java.io.UnsupportedEncodingException;
import java.security.*;
import java.security.spec.InvalidParameterSpecException;
/**
* Created by lsh
* AES-128-CBC 加密⽅式
* 注:
* AES-128-CBC可以⾃⼰定义“密钥”和“偏移量“。
* AES-128是jdk⾃动⽣成的“密钥”。
*/
public class AesCbcUtil {
static {
//BouncyCastle是⼀个开源的加解密解决⽅案,主页在/
Security.addProvider(new BouncyCastleProvider());
}
/**
* AES解密
*
* @param data      //密⽂,被加密的数据
* @param key      //秘钥
* @param iv      //偏移量
* @param encodingFormat //解密后的结果需要进⾏的编码
* @return
* @throws Exception
*/
public static String decrypt(String data, String key, String iv, String encodingFormat) throws Exception { //    initialize();
//被加密的数据
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) {
String result = new String(resultByte, encodingFormat);
}
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;
}
}
发送请求的⼯具类HttpRequest
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.URL;
import java.URLConnection;
import java.util.List;
import java.util.Map;
/**
* Created by lsh on 2017/6/22.
*/
public class HttpRequest {
/**
* 向指定URL发送GET⽅法的请求
*
* @param url
*      发送请求的URL
* @param param
*      请求参数,请求参数应该是 name1=value1&name2=value2 的形式。  * @return URL 所代表远程资源的响应结果
*/
public static String sendGet(String url, String param) {
String result = "";
BufferedReader in = null;
try {
String urlNameString = url + "?" + param;
URL realUrl = new URL(urlNameString);
// 打开和URL之间的连接
URLConnection connection = realUrl.openConnection();
// 设置通⽤的请求属性
connection.setRequestProperty("accept", "*/*");
connection.setRequestProperty("connection", "Keep-Alive");
connection.setRequestProperty("user-agent",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;SV1)");
// 建⽴实际的连接
// 获取所有响应头字段
Map<String, List<String>> map = HeaderFields();
/
/ 遍历所有的响应头字段
for (String key : map.keySet()) {
System.out.println(key + "--->" + (key));
}
// 定义 BufferedReader输⼊流来读取URL的响应
in = new BufferedReader(new InputStreamReader(
String line;
while ((line = in.readLine()) != null) {
result += line;
}
} catch (Exception e) {
System.out.println("发送GET请求出现异常!" + e);
e.printStackTrace();
}
// 使⽤finally块来关闭输⼊流
finally {
try {网络连接失败
if (in != null) {
in.close();
}
} catch (Exception e2) {
e2.printStackTrace();
}
}
return result;
}
/**
* 向指定 URL 发送POST⽅法的请求
*
*      发送请求的 URL
* @param param
*      请求参数,请求参数应该是 name1=value1&name2=value2 的形式。
* @return 所代表远程资源的响应结果
*/
public static String sendPost(String url, String param) {
PrintWriter out = null;
BufferedReader in = null;
String result = "";
try {
URL realUrl = new URL(url);
// 打开和URL之间的连接
URLConnection conn = realUrl.openConnection();
// 设置通⽤的请求属性
conn.setRequestProperty("accept", "*/*");
conn.setRequestProperty("connection", "Keep-Alive");
conn.setRequestProperty("user-agent",
"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1;SV1)");
// 发送POST请求必须设置如下两⾏
conn.setDoOutput(true);
conn.setDoInput(true);
// 获取URLConnection对象对应的输出流
out = new OutputStream());
// 发送请求参数
out.print(param);
/
/ flush输出流的缓冲
out.flush();
// 定义BufferedReader输⼊流来读取URL的响应
in = new BufferedReader(
new InputStream()));
String line;
while ((line = in.readLine()) != null) {
result += line;
}
} catch (Exception e) {
System.out.println("发送 POST 请求出现异常!"+e);
e.printStackTrace();
}
//使⽤finally块来关闭输出流、输⼊流
finally{
try{
if(out!=null){
out.close();
}
if(in!=null){
in.close();
}
}
catch(IOException ex){
ex.printStackTrace();
}
}
return result;
}
}
另外由于需求使⽤解密的⼯具类所有要在pom⽂件加上这个依赖
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcprov-ext-jdk16</artifactId>
<version>1.46</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
这样才能引⼊bcprov这个jar包。⽹上参考了⼀下,个⼈感觉加这个依赖是最容易解决问题的。最近打算弄个关于运动的⼩程序,解密这块估计也要⽤到。⼤家有疑问可以⼀起留⾔交流感谢阅读,希望能帮助到⼤家,谢谢⼤家对本站的⽀持!