fix bug in log upload

This commit is contained in:
lnk
2025-03-04 17:29:04 +08:00
parent 87f0a48ad7
commit 1df5385fc9
16 changed files with 434 additions and 80 deletions

View File

@@ -51,7 +51,7 @@ using namespace std;
SM4 sm4Encode;
sm4Encode.sm4_enc((char*)input,seriseLen+4,(char*)output,szKey);
printf("%lld || %s || %x %x %x %x\n", now_secs, output, pTime[3], pTime[2], pTime[1], pTime[0]);
printf("now_secs:%lld ||series: %s ||ptime: %x %x %x %x\n", now_secs, output, pTime[3], pTime[2], pTime[1], pTime[0]);//lnk20250304
}
void MyGetSM4Code(char* input,unsigned char* szKey,char* output)