|
|
|
@ -92,8 +92,7 @@ public class RetailRSvcServiceImpl implements RetailRSvcService {
|
|
|
|
|
if (client == null) {
|
|
|
|
|
throw new InvalidShortIdException();
|
|
|
|
|
}
|
|
|
|
|
String aesKeyStr = Base64.encodeBase64String(AESCrypt.randomKey().getEncoded());
|
|
|
|
|
Key key = AESCrypt.fromKeyString(Base64.decodeBase64(aesKeyStr));
|
|
|
|
|
Key key = AESCrypt.fromKeyString(Base64.decodeBase64(params.getString("nonce_str")));
|
|
|
|
|
JSONObject serviceApply = new JSONObject();
|
|
|
|
|
serviceApply.put("apply_id", UUID.randomUUID().toString());
|
|
|
|
|
serviceApply.put("service_code", sourceCode);
|
|
|
|
@ -108,6 +107,7 @@ public class RetailRSvcServiceImpl implements RetailRSvcService {
|
|
|
|
|
clientServicesApplyMapper.save(serviceApply);
|
|
|
|
|
result.put("result_status", "PROCESSING");
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
logger.error("enter R services fail:{} - {}",sourceCode,e.getMessage());
|
|
|
|
|
result.put("result_status", "SYSTEMERROR");
|
|
|
|
|
result.put("result_msg", e.getMessage());
|
|
|
|
|
}
|
|
|
|
@ -120,7 +120,7 @@ public class RetailRSvcServiceImpl implements RetailRSvcService {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private String decData(String data, Key key, String privateKey) {
|
|
|
|
|
String priKeyDecData = SignUtils.decData(data, privateKey);
|
|
|
|
|
return org.apache.commons.codec.binary.Base64.encodeBase64String(AESCrypt.encrypt(priKeyDecData.getBytes(StandardCharsets.UTF_8), key));
|
|
|
|
|
String aesData = new String(AESCrypt.decrypt(Base64.decodeBase64(data), key), StandardCharsets.UTF_8);
|
|
|
|
|
return SignUtils.decData(aesData, privateKey);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|