hi, i have found this cryptopp, and it looks nice. i cant find any
thing like it. however, theres bad documentation, and no code samples,
well, there is, but for only like 2 algorithms. from what ive been
able to figure out , i can only generate an rsa key pair, but as for
encrypt/ decrypt, i dont see those defined in the rsa.h, and i have no
clue as to what function there is to encrypt/decrypt with.
this is all i can come up with

AutoSeededRandomPool rng1;
RSA::PrivateKey prv;
RSA::PublicKey prp;
prv.GenerateRandomWithKeySize(rng1,2048);//1024//2048//4096//8192
prp.AssignFrom(prv);

Reply via email to