mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-15 12:29:35 +00:00
22 lines
451 B
C
22 lines
451 B
C
|
/**
|
||
|
* Author......: See docs/credits.txt
|
||
|
* License.....: MIT
|
||
|
*/
|
||
|
|
||
|
#ifndef _EMU_INC_CIPHER_AES_H
|
||
|
#define _EMU_INC_CIPHER_AES_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_cipher_aes.h"
|
||
|
|
||
|
#pragma GCC diagnostic pop
|
||
|
|
||
|
#endif // _EMU_INC_CIPHER_AES_H
|