You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hashcat/include/emu_general.h

31 lines
633 B

/**
* Author......: See docs/credits.txt
* License.....: MIT
*/
#ifndef HC_CPU_OPENCL_EMU_H
#define HC_CPU_OPENCL_EMU_H
#define DEVICE_TYPE -1
#define VENDOR_ID -1
#define LOCAL_MEM_TYPE 2
#define CUDA_ARCH 0
#define HAS_VPERM 0
#define HAS_VADD3 0
#define HAS_VBFE 0
#define VECT_SIZE 1
#ifdef DGST_ELEM
typedef struct digest
{
u32 digest_buf[DGST_ELEM];
} digest_t;
#endif
size_t get_global_id (u32 dimindx __attribute__((unused)));
size_t get_local_id (u32 dimindx __attribute__((unused)));
size_t get_local_size (u32 dimindx __attribute__((unused)));
#endif // HC_CPU_OPENCL_EMU_H