never mind. i was doing this after a 20hr code crunch session and
screwed it up.

for posterity:

//wrong
StringSource privString(privateKeyString, true, new HexDecoder);
RSASSA_PKCS1v15_SHA_Signer priv(privateKeyString);

//right
StringSource privString(privateKeyString, true, new HexDecoder);
RSASSA_PKCS1v15_SHA_Signer priv(privString);
-- 
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