You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hashcat/include/cpu_crc32.h

16 lines
312 B

/**
* Author......: See docs/credits.txt
* License.....: MIT
*/
#ifndef HC_CPU_CRC32_H
#define HC_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 // HC_CPU_CRC32_H