Update comments

This commit is contained in:
Jeffrey Walton 2016-12-04 13:04:12 -05:00
parent b4b1b530c1
commit acf15c21c0
No known key found for this signature in database
GPG Key ID: B36AB348921B1838

View File

@ -152,8 +152,9 @@ int CRYPTOPP_API main(int argc, char *argv[])
std::string seed = IntToString(time(NULL));
seed.resize(16, ' ');
OFB_Mode<AES>::Encryption& prng = dynamic_cast<OFB_Mode<AES>::Encryption&>(GlobalRNG());
prng.SetKeyWithIV((byte *)seed.data(), 16, (byte *)seed.data());
// Fetch the SymmetricCipher interface, not the RandomNumberGenerator interface, to key the underlying cipher
OFB_Mode<AES>::Encryption& aesg = dynamic_cast<OFB_Mode<AES>::Encryption&>(GlobalRNG());
aesg.SetKeyWithIV((byte *)seed.data(), 16, (byte *)seed.data());
std::string command, executableName, macFilename;