mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-05 23:10:00 +00:00
3daf0af480
Added docs/team.txt
15 lines
228 B
C
15 lines
228 B
C
/**
|
|
* Author......: See docs/credits.txt
|
|
* 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
|