some axcrypt fixes
[hashcat.git] / OpenCL / m06000_a1.cl
index d7d6125..77d832e 100644 (file)
@@ -7,20 +7,20 @@
 
 #define NEW_SIMD_CODE
 
-#include "include/constants.h"
-#include "include/kernel_vendor.h"
+#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 "include/kernel_functions.c"
-#include "OpenCL/types_ocl.c"
-#include "OpenCL/common.c"
-#include "OpenCL/simd.c"
+#include "inc_hash_functions.cl"
+#include "inc_types.cl"
+#include "inc_common.cl"
+#include "inc_simd.cl"
 
-static void ripemd160_transform (const u32x w[16], u32x dgst[5])
+void ripemd160_transform (const u32x w[16], u32x dgst[5])
 {
   u32x a1 = dgst[0];
   u32x b1 = dgst[1];
@@ -343,10 +343,6 @@ __kernel void m06000_m04 (__global pw_t *pws, __global kernel_rule_t *rules_buf,
     w[14] = pw_len * 8;
     w[15] = 0;
 
-    /**
-     * RipeMD160
-     */
-
     u32x dgst[5];
 
     dgst[0] = RIPEMD160M_A;
@@ -507,10 +503,6 @@ __kernel void m06000_s04 (__global pw_t *pws, __global kernel_rule_t *rules_buf,
     w[14] = pw_len * 8;
     w[15] = 0;
 
-    /**
-     * RipeMD160
-     */
-
     u32x dgst[5];
 
     dgst[0] = RIPEMD160M_A;