mirror of
https://github.com/Scandal-UK/Incognito_RCM.git
synced 2024-12-23 10:52:06 +00:00
10 lines
234 B
C
10 lines
234 B
C
|
|
||
|
// 암호화 모드
|
||
|
#define ENC 1
|
||
|
// 복호화 모드
|
||
|
#define DEC 0
|
||
|
|
||
|
typedef unsigned char BYTE;
|
||
|
|
||
|
// 128비트 XTS_AES 암복호화 인터페이스
|
||
|
void XTS_AES128(BYTE *plain, BYTE *cipher, unsigned int size, BYTE* key, int mode);
|