mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-12 18:59:03 +00:00
20 lines
795 B
C
20 lines
795 B
C
/**
|
|
* Author......: See docs/credits.txt
|
|
* License.....: MIT
|
|
*/
|
|
|
|
#ifndef _INC_CIPHER_SERPENT_H
|
|
#define _INC_CIPHER_SERPENT_H
|
|
|
|
DECLSPEC void serpent128_set_key (u32 *ks, const u32 *ukey);
|
|
DECLSPEC void serpent128_encrypt (const u32 *ks, const u32 *in, u32 *out);
|
|
DECLSPEC void serpent128_decrypt (const u32 *ks, const u32 *in, u32 *out);
|
|
DECLSPEC void serpent192_set_key (u32 *ks, const u32 *ukey);
|
|
DECLSPEC void serpent192_encrypt (const u32 *ks, const u32 *in, u32 *out);
|
|
DECLSPEC void serpent192_decrypt (const u32 *ks, const u32 *in, u32 *out);
|
|
DECLSPEC void serpent256_set_key (u32 *ks, const u32 *ukey);
|
|
DECLSPEC void serpent256_encrypt (const u32 *ks, const u32 *in, u32 *out);
|
|
DECLSPEC void serpent256_decrypt (const u32 *ks, const u32 *in, u32 *out);
|
|
|
|
#endif // _INC_CIPHER_SERPENT_H
|