This commit is contained in:
2024-03-31 13:23:55 +08:00
parent a1b9f7a32d
commit a08eb9c220
11 changed files with 804 additions and 233 deletions

View File

@@ -1,10 +1,12 @@
#pragma once
#include "pch.h"
static int awqs = 0;
//单个字符解密
char CutcodeChar(char c, int key, int key2) {
return (((c - 1) ^ key) ^ key2) - key;
awqs++;
char a = (((c - 1) ^ key) ^ key2) - key;
return a;
}
//解密