Dear All!

The "GenerateRandomWithKeySize" command (see sample code below) generates tons 
of valgrind errors of the kind "Use of uninitialised value of size 4", 
"Conditional jump or move depends on uninitialised value(s)", etc.

Any clues? Did I oversee any kind of required initialization?

cf t

---

#include "cryptlib.h"
#include "rsa.h"
#include "osrng.h"

using namespace std;
using namespace CryptoPP;

int main()
{
        AutoSeededRandomPool rng;
        InvertibleRSAFunction keypair;

        keypair.GenerateRandomWithKeySize(rng, 1536);
}


      

-- 
You received this message because you are subscribed to the "Crypto++ Users" 
Google Group.
To unsubscribe, send an email to [email protected].
More information about Crypto++ and this group is available at 
http://www.cryptopp.com.

Reply via email to