mirror of
https://github.com/hashcat/hashcat.git
synced 2024-10-31 20:48:57 +00:00
62397283c1
See https://github.com/hashcat/hashcat/issues/2616 for details.
16 lines
306 B
C
16 lines
306 B
C
/**
|
|
* Author......: See docs/credits.txt
|
|
* License.....: MIT
|
|
*/
|
|
|
|
#ifndef _CPU_CRC32_H
|
|
#define _CPU_CRC32_H
|
|
|
|
#include <stdio.h>
|
|
#include <errno.h>
|
|
|
|
int cpu_crc32 (const char *filename, u8 *keytab, const size_t keytabsz);
|
|
u32 cpu_crc32_buffer (const u8 *buf, const size_t length);
|
|
|
|
#endif // _CPU_CRC32_H
|