mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-12 18:59:03 +00:00
15 lines
243 B
C
15 lines
243 B
C
/**
|
|
* Author......: Jens Steube <jens.steube@gmail.com>
|
|
* License.....: MIT
|
|
*/
|
|
|
|
#ifndef _CPU_CRC32_H
|
|
#define _CPU_CRC32_H
|
|
|
|
#include <stdio.h>
|
|
#include <errno.h>
|
|
|
|
void cpu_crc32 (const char *filename, u8 keytab[64]);
|
|
|
|
#endif // _CPU_CRC32_H
|