New encryption block...

Kagamin via Digitalmars-d digitalmars-d at puremagic.com
Mon Oct 17 02:39:57 PDT 2016


On Monday, 17 October 2016 at 08:46:36 UTC, Era Scarecrow wrote:
> encrypting multiple times won't get you the original value

My impression is different. This is how decryption looks like for 
chacha:
void ECRYPT_decrypt_bytes(ECRYPT_ctx *x,const u8 *c,u8 *m,u32 
bytes)
{
   ECRYPT_encrypt_bytes(x,c,m,bytes);
}


More information about the Digitalmars-d mailing list