mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-05 14:59:37 +00:00
22 lines
455 B
C
22 lines
455 B
C
/**
|
|
* Author......: See docs/credits.txt
|
|
* License.....: MIT
|
|
*/
|
|
|
|
#ifndef _EMU_INC_HASH_SHA256_H
|
|
#define _EMU_INC_HASH_SHA256_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_sha256.h"
|
|
|
|
#pragma GCC diagnostic pop
|
|
|
|
#endif // _EMU_INC_HASH_SHA256_H
|