Support 64 bit timestamps properly

This commit is contained in:
unix-ninja
2018-10-19 15:35:52 -04:00
parent 770e21e5ee
commit fddfd835d2
4 changed files with 13 additions and 10 deletions
+2 -2
View File
@@ -32,7 +32,7 @@ __kernel void m18100_mxx (__global pw_t *pws, __constant const kernel_rule_t *ru
COPY_PW (pws[gid]);
const u32 salt_len = salt_bufs[salt_pos].salt_len;
const u32 salt_len = 8;
u32 s[64] = { 0 };
@@ -125,7 +125,7 @@ __kernel void m18100_sxx (__global pw_t *pws, __constant const kernel_rule_t *ru
COPY_PW (pws[gid]);
const u32 salt_len = salt_bufs[salt_pos].salt_len;
const u32 salt_len = 8;
u32 s[64] = { 0 };
+2 -2
View File
@@ -37,7 +37,7 @@ __kernel void m18100_mxx (__global pw_t *pws, __global const kernel_rule_t *rule
w[idx] = swap32_S (pws[gid].i[idx]);
}
const u32 salt_len = salt_bufs[salt_pos].salt_len;
const u32 salt_len = 8;
u32 s[64] = { 0 };
@@ -155,7 +155,7 @@ __kernel void m18100_sxx (__global pw_t *pws, __global const kernel_rule_t *rule
w[idx] = swap32_S (pws[gid].i[idx]);
}
const u32 salt_len = salt_bufs[salt_pos].salt_len;
const u32 salt_len = 8;
u32 s[64] = { 0 };
+2 -2
View File
@@ -37,7 +37,7 @@ __kernel void m18100_mxx (__global pw_t *pws, __global const kernel_rule_t *rule
w[idx] = pws[gid].i[idx];
}
const u32 salt_len = salt_bufs[salt_pos].salt_len;
const u32 salt_len = 8;
u32x s[64] = { 0 };
@@ -141,7 +141,7 @@ __kernel void m18100_sxx (__global pw_t *pws, __global const kernel_rule_t *rule
w[idx] = pws[gid].i[idx];
}
const u32 salt_len = salt_bufs[salt_pos].salt_len;
const u32 salt_len = 8;
u32x s[64] = { 0 };