diff --git a/coolstore-partner-common/src/main/java/com/cool/store/constants/CommonConstants.java b/coolstore-partner-common/src/main/java/com/cool/store/constants/CommonConstants.java
index 21140ab24..0ecec8b2a 100644
--- a/coolstore-partner-common/src/main/java/com/cool/store/constants/CommonConstants.java
+++ b/coolstore-partner-common/src/main/java/com/cool/store/constants/CommonConstants.java
@@ -120,4 +120,6 @@ public class CommonConstants {
public static final String TRANSFER = "transfer";
+ public static final String FIX_MOBILE_OPENID_TEST = "HSAY5531DA7";
+ public static final String FIX_MOBILE_OPENID_ONLINE = "HSAY4AF322E";
}
diff --git a/coolstore-partner-common/src/main/java/com/cool/store/utils/AESDecryptor.java b/coolstore-partner-common/src/main/java/com/cool/store/utils/AESDecryptor.java
new file mode 100644
index 000000000..39f7107fb
--- /dev/null
+++ b/coolstore-partner-common/src/main/java/com/cool/store/utils/AESDecryptor.java
@@ -0,0 +1,139 @@
+package com.cool.store.utils;
+
+import com.cool.store.exception.ServiceException;
+
+import java.io.UnsupportedEncodingException;
+import java.nio.charset.Charset;
+import java.security.InvalidAlgorithmParameterException;
+import java.security.InvalidKeyException;
+import java.security.NoSuchAlgorithmException;
+import java.util.Arrays;
+
+import javax.crypto.BadPaddingException;
+import javax.crypto.Cipher;
+import javax.crypto.IllegalBlockSizeException;
+import javax.crypto.KeyGenerator;
+import javax.crypto.NoSuchPaddingException;
+import javax.crypto.SecretKey;
+import javax.crypto.spec.IvParameterSpec;
+import javax.crypto.spec.SecretKeySpec;
+
+/**
+ * https://cloud.tencent.com/developer/article/1823249
+ * 前后端约定
+ */
+public class AESDecryptor {
+
+ private static String Algorithm = "AES";
+ private static String AlgorithmProvider = "AES/CBC/PKCS5Padding"; //算法/模式/补码方式
+
+ public static byte[] generatorKey() throws NoSuchAlgorithmException {
+ KeyGenerator keyGenerator = KeyGenerator.getInstance(Algorithm);
+ keyGenerator.init(256);//默认128,获得无政策权限后可为192或256
+ SecretKey secretKey = keyGenerator.generateKey();
+ return secretKey.getEncoded();
+ }
+
+ public static IvParameterSpec getIv(byte[] ivstr) throws UnsupportedEncodingException {
+ IvParameterSpec ivParameterSpec = new IvParameterSpec(ivstr);
+ return ivParameterSpec;
+ }
+
+ public static String encrypt(String src, String keystr, IvParameterSpec iv) throws
+ NoSuchAlgorithmException,
+ NoSuchPaddingException,
+ InvalidKeyException,
+ IllegalBlockSizeException,
+ BadPaddingException,
+ UnsupportedEncodingException,
+ InvalidAlgorithmParameterException {
+ byte[] key = keystr.getBytes("utf-8");
+ SecretKey secretKey = new SecretKeySpec(key, Algorithm);
+ IvParameterSpec ivParameterSpec = iv;
+ Cipher cipher = Cipher.getInstance(AlgorithmProvider);
+ cipher.init(Cipher.ENCRYPT_MODE, secretKey, ivParameterSpec);
+ byte[] cipherBytes = cipher.doFinal(src.getBytes(Charset.forName("utf-8")));
+ return byteToHexString(cipherBytes);
+ }
+
+ public static String decrypt(String src, String keystr) {
+ try {
+ byte[] key = keystr.getBytes("utf-8");
+ SecretKey secretKey = new SecretKeySpec(key, Algorithm);
+ IvParameterSpec ivParameterSpec = getIv(Arrays.copyOfRange(keystr.getBytes("utf-8"), 0, 16));
+ Cipher cipher = Cipher.getInstance(AlgorithmProvider);
+ cipher.init(Cipher.DECRYPT_MODE, secretKey, ivParameterSpec);
+ byte[] hexBytes = hexStringToBytes(src);
+ byte[] plainBytes = cipher.doFinal(hexBytes);
+ return new String(plainBytes, "utf-8");
+ } catch (Exception e) {
+ throw new ServiceException(e.getMessage());
+ }
+ }
+
+ /**
+ * 将byte转换为16进制字符串
+ *
+ * @param src
+ * @return
+ */
+ public static String byteToHexString(byte[] src) {
+ StringBuilder sb = new StringBuilder();
+ for (int i = 0; i < src.length; i++) {
+ int v = src[i] & 0xff;
+ String hv = Integer.toHexString(v);
+ if (hv.length() < 2) {
+ sb.append("0");
+ }
+ sb.append(hv);
+ }
+ return sb.toString();
+ }
+
+ /**
+ * 将16进制字符串装换为byte数组
+ *
+ * @param hexString
+ * @return
+ */
+ public static byte[] hexStringToBytes(String hexString) {
+ hexString = hexString.toUpperCase();
+ int length = hexString.length() / 2;
+ char[] hexChars = hexString.toCharArray();
+ byte[] b = new byte[length];
+ for (int i = 0; i < length; i++) {
+ int pos = i * 2;
+ b[i] = (byte) (charToByte(hexChars[pos]) << 4 | charToByte(hexChars[pos + 1]));
+ }
+ return b;
+ }
+
+ private static byte charToByte(char c) {
+ return (byte) "0123456789ABCDEF".indexOf(c);
+ }
+
+ public static void main(String[] args) {
+ try {
+ /* // 密钥必须是16的倍数
+ String keystr = "0123456789ABCDEF";
+ String ivstr = "0123456789101112";
+ String src = "Hello World";
+
+ System.out.println("密钥:" + keystr);
+ System.out.println("偏移量:" + ivstr);
+ System.out.println("原字符串:" + src);
+ IvParameterSpec iv = getIv(ivstr);
+ String enc = encrypt(src, keystr, iv);
+ System.out.println("加密:" + enc);
+*/
+ String enc = "38395651e391c4b8ca327c4742b7f52f";
+ String keystr = "77fea013c3a6459685b83c21a2fc3411";
+ String ivstr = "77fea013c3a64596";
+ // IvParameterSpec iv = getIv(ivstr);
+ String dec = decrypt(enc, keystr);
+ System.out.println("解密:" + dec);
+ } catch (Exception e) {
+ e.printStackTrace();
+ }
+ }
+}
\ No newline at end of file
diff --git a/coolstore-partner-dao/src/main/resources/mapper/HyPartnerBaseInfoMapper.xml b/coolstore-partner-dao/src/main/resources/mapper/HyPartnerBaseInfoMapper.xml
index 2fd127a2c..d32350220 100644
--- a/coolstore-partner-dao/src/main/resources/mapper/HyPartnerBaseInfoMapper.xml
+++ b/coolstore-partner-dao/src/main/resources/mapper/HyPartnerBaseInfoMapper.xml
@@ -213,8 +213,8 @@
mobile = #{mobile},
- where partner_id = #{partnerId}
+ where partner_id = #{partnerId}