mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-01 13:09:11 +00:00
13 lines
268 B
C
13 lines
268 B
C
/**
|
|
* Author......: See docs/credits.txt
|
|
* License.....: MIT
|
|
*/
|
|
|
|
#ifndef _INC_TRUECRYPT_CRC32_H
|
|
#define _INC_TRUECRYPT_CRC32_H
|
|
|
|
DECLSPEC u32 round_crc32 (u32 a, const u32 v);
|
|
DECLSPEC u32 round_crc32_4 (const u32 w, const u32 iv);
|
|
|
|
#endif // _INC_TRUECRYPT_CRC32_H
|