mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-22 16:18:09 +00:00
Move macros DGST_R0 - DGST_R3 to host, define dgst_size for opencl kernel from host; both at runtime
This commit is contained in:
parent
0e68b2af25
commit
ed1863c263
@ -665,121 +665,7 @@ inline u32 amd_bytealign_S (const u32 a, const u32 b, const u32 c)
|
||||
|
||||
typedef struct
|
||||
{
|
||||
#if defined _STDOUT_
|
||||
u32 digest_buf[4];
|
||||
#elif defined _DES_
|
||||
u32 digest_buf[4];
|
||||
#elif defined _MD4_
|
||||
u32 digest_buf[4];
|
||||
#elif defined _MD5_
|
||||
u32 digest_buf[4];
|
||||
#elif defined _MD5H_
|
||||
u32 digest_buf[4];
|
||||
#elif defined _SHA1_
|
||||
u32 digest_buf[5];
|
||||
#elif defined _BCRYPT_
|
||||
u32 digest_buf[6];
|
||||
#elif defined _SHA256_
|
||||
u32 digest_buf[8];
|
||||
#elif defined _SHA384_
|
||||
u32 digest_buf[16];
|
||||
#elif defined _SHA512_
|
||||
u32 digest_buf[16];
|
||||
#elif defined _KECCAK_
|
||||
u32 digest_buf[50];
|
||||
#elif defined _RIPEMD160_
|
||||
u32 digest_buf[5];
|
||||
#elif defined _WHIRLPOOL_
|
||||
u32 digest_buf[16];
|
||||
#elif defined _GOST_
|
||||
u32 digest_buf[8];
|
||||
#elif defined _GOST2012_256_
|
||||
u32 digest_buf[8];
|
||||
#elif defined _GOST2012_512_
|
||||
u32 digest_buf[16];
|
||||
#elif defined _SAPB_
|
||||
u32 digest_buf[4];
|
||||
#elif defined _SAPG_
|
||||
u32 digest_buf[5];
|
||||
#elif defined _MYSQL323_
|
||||
u32 digest_buf[4];
|
||||
#elif defined _LOTUS5_
|
||||
u32 digest_buf[4];
|
||||
#elif defined _LOTUS6_
|
||||
u32 digest_buf[4];
|
||||
#elif defined _SCRYPT_
|
||||
u32 digest_buf[8];
|
||||
#elif defined _LOTUS8_
|
||||
u32 digest_buf[4];
|
||||
#elif defined _OFFICE2007_
|
||||
u32 digest_buf[4];
|
||||
#elif defined _OFFICE2010_
|
||||
u32 digest_buf[4];
|
||||
#elif defined _OFFICE2013_
|
||||
u32 digest_buf[4];
|
||||
#elif defined _OLDOFFICE01_
|
||||
u32 digest_buf[4];
|
||||
#elif defined _OLDOFFICE34_
|
||||
u32 digest_buf[4];
|
||||
#elif defined _SIPHASH_
|
||||
u32 digest_buf[4];
|
||||
#elif defined _PBKDF2_MD5_
|
||||
u32 digest_buf[32];
|
||||
#elif defined _PBKDF2_SHA1_
|
||||
u32 digest_buf[32];
|
||||
#elif defined _PBKDF2_SHA256_
|
||||
u32 digest_buf[32];
|
||||
#elif defined _PBKDF2_SHA512_
|
||||
u32 digest_buf[32];
|
||||
#elif defined _PDF17L8_
|
||||
u32 digest_buf[8];
|
||||
#elif defined _CRC32_
|
||||
u32 digest_buf[4];
|
||||
#elif defined _SEVEN_ZIP_
|
||||
u32 digest_buf[4];
|
||||
#elif defined _ANDROIDFDE_
|
||||
u32 digest_buf[4];
|
||||
#elif defined _DCC2_
|
||||
u32 digest_buf[4];
|
||||
#elif defined _WPA_
|
||||
u32 digest_buf[4];
|
||||
#elif defined _MD5_SHA1_
|
||||
u32 digest_buf[4];
|
||||
#elif defined _SHA1_MD5_
|
||||
u32 digest_buf[5];
|
||||
#elif defined _NETNTLMV2_
|
||||
u32 digest_buf[4];
|
||||
#elif defined _KRB5PA_
|
||||
u32 digest_buf[4];
|
||||
#elif defined _CLOUDKEY_
|
||||
u32 digest_buf[8];
|
||||
#elif defined _SCRYPT_
|
||||
u32 digest_buf[4];
|
||||
#elif defined _PSAFE2_
|
||||
u32 digest_buf[5];
|
||||
#elif defined _LOTUS8_
|
||||
u32 digest_buf[4];
|
||||
#elif defined _RAR3_
|
||||
u32 digest_buf[4];
|
||||
#elif defined _SHA256_SHA1_
|
||||
u32 digest_buf[8];
|
||||
#elif defined _MS_DRSR_
|
||||
u32 digest_buf[8];
|
||||
#elif defined _ANDROIDFDE_SAMSUNG_
|
||||
u32 digest_buf[8];
|
||||
#elif defined _RAR5_
|
||||
u32 digest_buf[4];
|
||||
#elif defined _KRB5TGS_
|
||||
u32 digest_buf[4];
|
||||
#elif defined _AXCRYPT_
|
||||
u32 digest_buf[4];
|
||||
#elif defined _KEEPASS_
|
||||
u32 digest_buf[4];
|
||||
#elif defined _ZIP2_
|
||||
u32 digest_buf[4];
|
||||
#elif defined _AXCRYPT_
|
||||
u32 digest_buf[4];
|
||||
#endif
|
||||
u32 digest_buf[DGST_ELEM];
|
||||
|
||||
} digest_t;
|
||||
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 0
|
||||
#define DGST_R1 3
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 1
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 0
|
||||
#define DGST_R1 3
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 1
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 0
|
||||
#define DGST_R1 3
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 1
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 0
|
||||
#define DGST_R1 3
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 1
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 0
|
||||
#define DGST_R1 3
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 1
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 0
|
||||
#define DGST_R1 3
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 1
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 0
|
||||
#define DGST_R1 3
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 1
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 0
|
||||
#define DGST_R1 3
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 1
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 0
|
||||
#define DGST_R1 3
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 1
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 0
|
||||
#define DGST_R1 3
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 1
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 0
|
||||
#define DGST_R1 3
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 1
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 0
|
||||
#define DGST_R1 3
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 1
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 0
|
||||
#define DGST_R1 3
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 1
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 0
|
||||
#define DGST_R1 3
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 1
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 0
|
||||
#define DGST_R1 3
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 1
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 0
|
||||
#define DGST_R1 3
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 1
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 0
|
||||
#define DGST_R1 3
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 1
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 0
|
||||
#define DGST_R1 3
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 1
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 0
|
||||
#define DGST_R1 3
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 1
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 0
|
||||
#define DGST_R1 3
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 1
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 0
|
||||
#define DGST_R1 3
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 1
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 3
|
||||
#define DGST_R1 4
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 1
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 3
|
||||
#define DGST_R1 4
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 1
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 3
|
||||
#define DGST_R1 4
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 1
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 3
|
||||
#define DGST_R1 4
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 1
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 3
|
||||
#define DGST_R1 4
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 1
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 3
|
||||
#define DGST_R1 4
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 1
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 3
|
||||
#define DGST_R1 4
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 1
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 3
|
||||
#define DGST_R1 4
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 1
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 3
|
||||
#define DGST_R1 4
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 1
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 3
|
||||
#define DGST_R1 4
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 1
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 3
|
||||
#define DGST_R1 4
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 1
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 3
|
||||
#define DGST_R1 4
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 1
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 3
|
||||
#define DGST_R1 4
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 1
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 3
|
||||
#define DGST_R1 4
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 1
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 3
|
||||
#define DGST_R1 4
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 1
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 3
|
||||
#define DGST_R1 4
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 1
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 3
|
||||
#define DGST_R1 4
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 1
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 3
|
||||
#define DGST_R1 4
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 1
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 3
|
||||
#define DGST_R1 4
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 1
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 3
|
||||
#define DGST_R1 4
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 1
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 3
|
||||
#define DGST_R1 4
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 1
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -8,14 +8,8 @@
|
||||
//incompatible
|
||||
//#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 0
|
||||
#define DGST_R1 1
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 3
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -8,14 +8,8 @@
|
||||
//incompatible
|
||||
//#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 0
|
||||
#define DGST_R1 1
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 3
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 0
|
||||
#define DGST_R1 1
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 3
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 3
|
||||
#define DGST_R1 4
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 1
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 3
|
||||
#define DGST_R1 4
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 1
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 3
|
||||
#define DGST_R1 4
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 1
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 0
|
||||
#define DGST_R1 1
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 3
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -5,14 +5,8 @@
|
||||
|
||||
#define _MD5_
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 0
|
||||
#define DGST_R1 1
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 3
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 0
|
||||
#define DGST_R1 3
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 1
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 0
|
||||
#define DGST_R1 3
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 1
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 0
|
||||
#define DGST_R1 3
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 1
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 0
|
||||
#define DGST_R1 3
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 1
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 0
|
||||
#define DGST_R1 3
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 1
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 0
|
||||
#define DGST_R1 3
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 1
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 0
|
||||
#define DGST_R1 3
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 1
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 0
|
||||
#define DGST_R1 3
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 1
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 0
|
||||
#define DGST_R1 3
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 1
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 3
|
||||
#define DGST_R1 7
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 6
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 3
|
||||
#define DGST_R1 7
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 6
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 3
|
||||
#define DGST_R1 7
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 6
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 3
|
||||
#define DGST_R1 7
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 6
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 3
|
||||
#define DGST_R1 7
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 6
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 3
|
||||
#define DGST_R1 7
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 6
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 3
|
||||
#define DGST_R1 7
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 6
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 3
|
||||
#define DGST_R1 7
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 6
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 3
|
||||
#define DGST_R1 7
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 6
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 3
|
||||
#define DGST_R1 7
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 6
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 3
|
||||
#define DGST_R1 7
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 6
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 3
|
||||
#define DGST_R1 7
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 6
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 3
|
||||
#define DGST_R1 7
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 6
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 3
|
||||
#define DGST_R1 7
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 6
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 3
|
||||
#define DGST_R1 7
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 6
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 3
|
||||
#define DGST_R1 7
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 6
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 3
|
||||
#define DGST_R1 7
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 6
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 3
|
||||
#define DGST_R1 7
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 6
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 3
|
||||
#define DGST_R1 7
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 6
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 3
|
||||
#define DGST_R1 7
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 6
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 3
|
||||
#define DGST_R1 7
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 6
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -10,14 +10,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 0
|
||||
#define DGST_R1 1
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 3
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -9,14 +9,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 0
|
||||
#define DGST_R1 1
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 3
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define _DES_
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 0
|
||||
#define DGST_R1 1
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 3
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -5,14 +5,8 @@
|
||||
|
||||
#define _MD5_
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 0
|
||||
#define DGST_R1 1
|
||||
#define DGST_R2 2
|
||||
#define DGST_R3 3
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 14
|
||||
#define DGST_R1 15
|
||||
#define DGST_R2 6
|
||||
#define DGST_R3 7
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 14
|
||||
#define DGST_R1 15
|
||||
#define DGST_R2 6
|
||||
#define DGST_R3 7
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 14
|
||||
#define DGST_R1 15
|
||||
#define DGST_R2 6
|
||||
#define DGST_R3 7
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 14
|
||||
#define DGST_R1 15
|
||||
#define DGST_R2 6
|
||||
#define DGST_R3 7
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 14
|
||||
#define DGST_R1 15
|
||||
#define DGST_R2 6
|
||||
#define DGST_R3 7
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 14
|
||||
#define DGST_R1 15
|
||||
#define DGST_R2 6
|
||||
#define DGST_R3 7
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 14
|
||||
#define DGST_R1 15
|
||||
#define DGST_R2 6
|
||||
#define DGST_R3 7
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 14
|
||||
#define DGST_R1 15
|
||||
#define DGST_R2 6
|
||||
#define DGST_R3 7
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 14
|
||||
#define DGST_R1 15
|
||||
#define DGST_R2 6
|
||||
#define DGST_R3 7
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 14
|
||||
#define DGST_R1 15
|
||||
#define DGST_R2 6
|
||||
#define DGST_R3 7
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 14
|
||||
#define DGST_R1 15
|
||||
#define DGST_R2 6
|
||||
#define DGST_R3 7
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 14
|
||||
#define DGST_R1 15
|
||||
#define DGST_R2 6
|
||||
#define DGST_R3 7
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 14
|
||||
#define DGST_R1 15
|
||||
#define DGST_R2 6
|
||||
#define DGST_R3 7
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 14
|
||||
#define DGST_R1 15
|
||||
#define DGST_R2 6
|
||||
#define DGST_R3 7
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
@ -7,14 +7,8 @@
|
||||
|
||||
#define NEW_SIMD_CODE
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_vendor.cl"
|
||||
|
||||
#define DGST_R0 14
|
||||
#define DGST_R1 15
|
||||
#define DGST_R2 6
|
||||
#define DGST_R3 7
|
||||
|
||||
#include "inc_hash_constants.h"
|
||||
#include "inc_hash_functions.cl"
|
||||
#include "inc_types.cl"
|
||||
#include "inc_common.cl"
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user