123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using Newtonsoft.Json;
- using Newtonsoft.Json.Linq;
- using PTMedicalInsurance.Variables;
- using GMCrypto.Lib;
- using PTMedicalInsurance.Common;
- namespace PTMedicalInsurance.Helper
- {
- class EncryptHelper
- {
-
-
-
-
-
-
-
-
-
- private string appId = "1H62Q1KGP05J76430B0A00007144E257";
- private string appSecret = "1H62Q1KH205K76430B0A0000BF149773";
- private string privateKey = "YbNObZNMdUgwgLUEyK4ixNSkaCF9OPtCdDth9APWYKU = ";
- private string publicKey = "BIrhJIL0UTuC1+Oq50EhzCFNaSJcBwEe9fndgDsAM/1aZCxy77wROYHysAej7wyqAhi+qZcJVXmuj7NfDaHfD40=";
- public EncryptHelper()
- {
-
- }
- public EncryptHelper(string appId, string appSecret, string publicKey, string privateKey)
- {
- this.appId = appId;
- this.appSecret = appSecret;
- this.publicKey = publicKey;
- this.privateKey = privateKey;
- }
- public string getSignText(string data)
- {
- return "";
-
-
- }
- public string encrypt(string data, ref string signText)
- {
- string encryptData = "";
- try
- {
- string strData = JsonConvert.SerializeObject(JObject.Parse(data), Newtonsoft.Json.Formatting.None);
- encryptData = SignUtils.encryptMsg(appId, appSecret, privateKey, strData, ref signText);
- return encryptData;
- }
- catch (Exception ex)
- {
- encryptData = ex.Message;
- return encryptData;
- }
- finally
- {
-
- }
- }
- public string sign(string data)
- {
- string encryptData = "";
- try
- {
- encryptData = SignUtils.signSm3WithSm2(appSecret, privateKey, data);
- return encryptData;
- }
- catch (Exception ex)
- {
- encryptData = ex.Message;
- return encryptData;
- }
- finally
- {
- Global.writeLog("ak:" + appSecret + ";sk:" + privateKey + ";appid:" + appId, data, encryptData);
- }
- }
- public bool verify(JObject signDto, string signData)
- {
- string error = "";
- try
- {
- return SMUtil.verify(signDto, appSecret, publicKey, signData);
- }
- catch (Exception ex)
- {
- error = ex.Message;
- return false;
- }
- finally
- {
- Global.writeLog("ak:" + appSecret + ";sk:" + privateKey + ";appid:" + appId, signDto.ToString() + ";" + signData, error);
- }
- }
- public string decrypt(string encryptData)
- {
- string data = "";
- try
- {
- data = SMUtil.decrypt(encryptData, appId, appSecret);
- return data;
- }
- catch (Exception ex)
- {
- data = ex.Message;
- return data;
- }
- finally
- {
- Global.writeLog("ak:" + appSecret + ";sk:" + privateKey + ";appid:" + appId, encryptData, data);
- }
- }
- }
- }
|