Files

8 lines
192 B
C
Raw Permalink Normal View History

2026-06-01 18:15:20 +08:00
#ifndef __ENCRYPTION_H__
#define __ENCRYPTION_H__
void Encrypt_Code(unsigned char *data, unsigned char *EPT_data);
void Decrypt_Code(unsigned char *EPT_data,unsigned char *DPT_data);
#endif