I need to create a internal AES/Base64 encrypt system for my application. I mean , I don't want to have any side dll for my exe like openssl library.
I found this threads :
- Problems with CryptoPP C++ AES-256+Base64
- Crypto++ encrypt and decrypt in two different c++ programs
But they wasn't what I need , I searched and I found nothing.
What I need exactly is like this site : https://aesencryption.net/
- First an AES encryption with a key at 256bit mode
- Next convert it to Base64 ( a Result of encryption in base64 in aesencryption.net )
- And a decrypt system to get the first string from encrypted result.
In this thread the key has to be 32 lenght but in the aesencryption.net it can be everything .
Can you please guide me how can I create a system like aesencryption.net site ?