mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-01 13:09:11 +00:00
14 lines
390 B
C
14 lines
390 B
C
/**
|
|
* Author......: See docs/credits.txt
|
|
* License.....: MIT
|
|
*/
|
|
|
|
#ifndef _INC_LUKS_ESSIV_H
|
|
#define _INC_LUKS_ESSIV_H
|
|
|
|
DECLSPEC void ESSIV_sha256_transform_S (const u32 *w0, const u32 *w1, const u32 *w2, const u32 *w3, u32 *digest);
|
|
DECLSPEC void ESSIV_sha256_init128 (u32 *key, u32 *essivhash);
|
|
DECLSPEC void ESSIV_sha256_init256 (u32 *key, u32 *essivhash);
|
|
|
|
#endif // _INC_LUKS_ESSIV_H
|