10007加密
This commit is contained in:
parent
6ef7906493
commit
e342d88d32
|
@ -439,7 +439,10 @@ public class NetManager : BaseManager<NetManager>
|
|||
}
|
||||
if (operationType == "3")
|
||||
{
|
||||
string examUrl = url + webURLDic["试卷"] + examId;
|
||||
var _cipher = Sm4Base.EncryptECB(Encoding.UTF8.GetBytes(examId), Encrypt._key);
|
||||
string _id = Hex.ToHexString((Sm4Base.EncryptECB(Encoding.UTF8.GetBytes(examId), Encrypt._key)));
|
||||
|
||||
string examUrl = url + webURLDic["试卷"] + _id;
|
||||
currentExamData = await Get<ExamData>(examUrl);
|
||||
taskListData = JsonConvert.DeserializeObject<TaskListData>(currentExamData.data.backJson);
|
||||
action?.Invoke(true);
|
||||
|
|
Loading…
Reference in New Issue