Crypto++ 을 이용한 암호화/복호화 예제
출처: https://lyb1495.tistory.com/25 가끔 텍스트 파일을 감추고 싶을때.. 이용하면 좋음. #include #include #include "cryptopp/cryptlib.h" #include "cryptopp/modes.h" #include "cryptopp/aes.h" #include "cryptopp/filters.h" #include "cryptopp/base64.h" void hex2byte(const char *in, uint len, byte *out) { for (uint i = 0; i < len; i+=2) { char c0 = in[i+0]; char c1 = in[i+1]; byte c = ( ((c0 & 0x40 ? (c0 & 0x20 ? c0-0x57 ..