1
mirror of https://github.com/hashcat/hashcat synced 2025-01-10 17:16:22 +01:00
hashcat/include/cpu_crc32.h

16 lines
321 B
C
Raw Normal View History

2015-12-04 15:47:52 +01:00
/**
* Author......: See docs/credits.txt
2015-12-04 15:47:52 +01:00
* License.....: MIT
*/
#ifndef _CPU_CRC32_H
#define _CPU_CRC32_H
2016-09-06 15:28:56 +02:00
#include <stdio.h>
#include <errno.h>
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
#endif // _CPU_CRC32_H