mirror of
https://github.com/hashcat/hashcat.git
synced 2024-10-31 20:48:57 +00:00
18 lines
297 B
C
18 lines
297 B
C
/**
|
|
* Author......: See docs/credits.txt
|
|
* License.....: MIT
|
|
*/
|
|
|
|
#ifndef _EMU_INC_CIPHER_DES_H
|
|
#define _EMU_INC_CIPHER_DES_H
|
|
|
|
#include "emu_general.h"
|
|
|
|
#include "inc_vendor.h"
|
|
#include "inc_cipher_des.h"
|
|
|
|
extern u32a c_SPtrans[8][64];
|
|
extern u32a c_skb[8][64];
|
|
|
|
#endif // _EMU_INC_CIPHER_DES_H
|