mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-05 06:58:56 +00:00
16 lines
470 B
C
16 lines
470 B
C
/**
|
|
* Author......: See docs/credits.txt
|
|
* License.....: MIT
|
|
*/
|
|
|
|
#ifndef _INC_CIPHER_KUZNYECHIK_H
|
|
#define _INC_CIPHER_KUZNYECHIK_H
|
|
|
|
DECLSPEC void kuznyechik_linear (u32 *w);
|
|
DECLSPEC void kuznyechik_linear_inv (u32 *w);
|
|
DECLSPEC void kuznyechik_set_key (u32 *ks, const u32 *ukey);
|
|
DECLSPEC void kuznyechik_encrypt (const u32 *ks, const u32 *in, u32 *out);
|
|
DECLSPEC void kuznyechik_decrypt (const u32 *ks, const u32 *in, u32 *out);
|
|
|
|
#endif // _INC_CIPHER_KUZNYECHIK_H
|