mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-12 10:48:57 +00:00
15 lines
255 B
C
15 lines
255 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 (hashcat_ctx_t *hashcat_ctx, const char *filename, u8 keytab[64]);
|
|
|
|
#endif // _CPU_CRC32_H
|