mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-19 14:48:10 +00:00
22 lines
447 B
C
22 lines
447 B
C
|
/**
|
||
|
* Author......: See docs/credits.txt
|
||
|
* License.....: MIT
|
||
|
*/
|
||
|
|
||
|
#ifndef _EMU_INC_HASH_SHA1_H
|
||
|
#define _EMU_INC_HASH_SHA1_H
|
||
|
|
||
|
#include "emu_general.h"
|
||
|
|
||
|
#pragma GCC diagnostic push
|
||
|
#pragma GCC diagnostic ignored "-Wunused-variable"
|
||
|
#pragma GCC diagnostic ignored "-Wunused-parameter"
|
||
|
#pragma GCC diagnostic ignored "-Wunknown-pragmas"
|
||
|
|
||
|
#include "inc_vendor.h"
|
||
|
#include "inc_hash_sha1.h"
|
||
|
|
||
|
#pragma GCC diagnostic pop
|
||
|
|
||
|
#endif // _EMU_INC_HASH_SHA1_H
|