Hey Chris,

The appropriate use in Crypto++ should be:

#include "modes.h"
#include "aes.h"

using namespace CryptoPP;
CTR_Mode<AES>::Encryption Instance(Key,Keylength,IV,IVLength);
Instance.ProcessData(Out,In,Size); // this won't pad

BR

JPM

Am 10.01.2016 um 22:45 schrieb Christian Kvasny:
> Hallo Folks
>
>
> Pls can anybody tell me the Java equivalent for C++
>
> "Cipher.getInstance ("AES/CTR/NoPadding")"
>
> I need encode and decode with external key and external IV.
>
> I'll seach for a very long Time for a solution, but i can't find any
> hint which works.
>
> AES/CTR will work but how i can disable Padding
>
> lg Chris
>
> -- 
> -- 
> 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.
> ---
> You received this message because you are subscribed to the Google
> Groups "Crypto++ Users" group.
> To unsubscribe from this group and stop receiving emails from it, send
> an email to [email protected]
> <mailto:[email protected]>.
> For more options, visit https://groups.google.com/d/optout.

-- 
-- 
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.
--- 
You received this message because you are subscribed to the Google Groups 
"Crypto++ Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to