> I saw there was an " CryptoPP::Base64Decoder "  but I don't know how
> to use it in the correct way.
>
> Does have someone some exemple or purpose about how to do it
> correctly ?

It seems you need encoder, not decoder?

Try this:

string plainText = "your string";
string encoded;
StringSource(plainText, true, new Base64Encoder(new
StringSink(encoded)));

--~--~---------~--~----~------------~-------~--~----~
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