C++ AES암호화1 C,C++ AES 암호화 예제 123456789101112131415161718192021222324252627282930313233343536#include #include #define CBC 1#define ECB 0#include "aes.h" int main(void) { int I, Len; char In[]="Hello AES128..."; BYTE Key[]={0x2b, 0x7e, 0x15, 0x16, 0x28, 0xae, 0xd2, 0xa6, 0xab, 0xf7, 0x15, 0x88, 0x09, 0xcf, 0x4f, 0x3c}; BYTE EncBuff[80]; BYTE DecBuff[80]; printf("Testing AES128\n\n"); printf("OrgString: '%s'\n", In); Len=strl.. 프로그래밍/C++ 2018.12.11 2 Plorence