Can anyone tell my how this guy, who gives the code example, is able to use byte
?
Like this line:
byte key[ CryptoPP::AES::DEFAULT_KEYLENGTH ], iv[ CryptoPP::AES::BLOCKSIZE ];
and
std::cout << "0x" << std::hex << (0xFF & static_cast<byte>(ciphertext[i])) << " ";
I tried copy-paste, but I can't create byte
variables.