mirror of
https://github.com/hashcat/hashcat.git
synced 2025-07-05 22:32:35 +00:00

Refactored inc_hash_scrypt.cl almost completely and improved macro names in inc_hash_scrypt.h. Adapted all existing SCRYPT-based plugins to the new standard. If you have custom SCRYPT based plugins use hash-mode 8900 as reference. Fixed some compiler warnings in inc_platform.cl. Cleaned up code paths in inc_vendor.h for finding values for HC_ATTR_SEQ and DECLSPEC. Removed option --device-as-default-execution-space from nvrtc for hiprtc compatibility. As a result, added __device__ back to DECLSPEC. Removed option --restrict from nvrtc compile options since we actually alias some buffers. Added --gpu-max-threads-per-block to hiprtc options. Added -D MAX_THREADS_PER_BLOCK to OpenCL options (currently unused). Removed all OPTS_TYPE_MP_MULTI_DISABLE entries for SNMPv3-based plugins. These plugins consume large amounts of memory and for this reason,limited kernel_accel max to 256. This may still be high, but hashcat will automatically tune down kernel_accel if insufficient memory is detected. Removed command `rocm-smi --resetprofile --resetclocks --resetfans` from benchmark_deep.pl, since some AMD GPUs become artificially slow for a while after running these commands. Replaced load_source() with file_to_buffer() from shared.c, which does the exact same operations. Moved suppress_stderr() and restore_stderr() to shared.c and reused them in both Python bridges and opencl_test_instruction(), where the same type of code existed.
46 lines
981 B
C
46 lines
981 B
C
/**
|
|
* Author......: See docs/credits.txt
|
|
* License.....: MIT
|
|
*/
|
|
|
|
#ifndef INC_HASH_SCRYPT_H
|
|
#define INC_HASH_SCRYPT_H
|
|
|
|
#define GET_SCRYPT_SZ(r,p) (128 * (r) * (p))
|
|
#define GET_STATE_SZ(r) (128 * (r))
|
|
|
|
// _SZ is true sizes as bytes
|
|
#define SCRYPT_SZ GET_SCRYPT_SZ (SCRYPT_R, SCRYPT_P)
|
|
#define STATE_SZ GET_STATE_SZ (SCRYPT_R)
|
|
|
|
// _CNT is size as whatever /X datatype
|
|
#define SCRYPT_CNT4 (SCRYPT_SZ / 4)
|
|
#define STATE_CNT4 (STATE_SZ / 4)
|
|
|
|
// this would be uint4, feels more natural than 16
|
|
#define SCRYPT_CNT44 ((SCRYPT_SZ / 4) / 4)
|
|
#define STATE_CNT44 ((STATE_SZ / 4) / 4)
|
|
|
|
#define SALSA_SZ 64
|
|
#define SALSA_CNT4 (SALSA_SZ / 4)
|
|
|
|
#define VIDX(bid4,lsz,lid,ySIZE,zSIZE,y,z) (((bid4) * (lsz) * (ySIZE) * (zSIZE)) + ((lid) * (ySIZE) * (zSIZE)) + ((y) * (zSIZE)) + (z))
|
|
|
|
#if defined IS_CUDA
|
|
|
|
DECLSPEC uint4 operator ^ (const uint4 a, const uint4 b)
|
|
{
|
|
uint4 r;
|
|
|
|
r.x = a.x ^ b.x;
|
|
r.y = a.y ^ b.y;
|
|
r.z = a.z ^ b.z;
|
|
r.w = a.w ^ b.w;
|
|
|
|
return r;
|
|
}
|
|
|
|
#endif
|
|
|
|
#endif
|