2015-12-04 15:47:52 +01:00
|
|
|
/**
|
2016-09-11 22:20:15 +02:00
|
|
|
* Author......: See docs/credits.txt
|
2015-12-04 15:47:52 +01:00
|
|
|
* License.....: MIT
|
|
|
|
*/
|
|
|
|
|
2016-09-06 18:44:05 +02:00
|
|
|
#ifndef _CPU_CRC32_H
|
|
|
|
#define _CPU_CRC32_H
|
2016-09-05 21:47:26 +02:00
|
|
|
|
2016-09-06 15:28:56 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
2017-01-24 10:28:35 +01:00
|
|
|
int cpu_crc32 (hashcat_ctx_t *hashcat_ctx, const char *filename, u8 keytab[64]);
|
|
|
|
u32 cpu_crc32_buffer (const u8 *buf, const size_t length);
|
2016-09-06 15:28:56 +02:00
|
|
|
|
2016-09-06 18:44:05 +02:00
|
|
|
#endif // _CPU_CRC32_H
|