1
mirror of https://github.com/hashcat/hashcat synced 2025-03-22 21:14:22 +01:00
hashcat/OpenCL/inc_cipher_camellia.h

11 lines
407 B
C
Raw Normal View History

2019-03-22 22:00:07 +01:00
/**
* Author......: See docs/credits.txt
* License.....: MIT
*/
DECLSPEC void cam_feistel (const u32 *x, const u32 *k, u32 *y);
DECLSPEC void cam_fl (u32 *x, const u32 *kl, const u32 *kr);
DECLSPEC void camellia256_set_key (u32 *ks, const u32 *ukey);
DECLSPEC void camellia256_encrypt (const u32 *ks, const u32 *in, u32 *out);
DECLSPEC void camellia256_decrypt (const u32 *ks, const u32 *in, u32 *out);