Someone kindly pointed out a post to me that shows how to get the key parameters. Something like:
AutoSeededRandomPool rng; InvertibleRSAFunction params; params.GenerateRandomWithKeySize( rng, 1536 ); Integer n = params.GetModulus(); Integer p = params.GetPrime1(); Integer q = params.GetPrime2(); Integer d = params.GetPrivateExponent(); Integer e = params.GetPublicExponent(); What I need is to get generate the XML form of the keys, as done in .Net. What I'm missing is DP, DQ an InverseQ. Is this possible with Crypto++? Thanks -- 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. To unsubscribe from this group, send email to cryptopp-users+unsubscribegooglegroups.com or reply to this email with the words "REMOVE ME" as the subject.
