X-Git-Url: https://www.flypig.org.uk/git/?a=blobdiff_plain;f=OpenCL%2Fm11500_a0.cl;h=4feacf99e69ebdd5187b4714536381ffdc85b296;hb=0b3743ce943c055e4497ea387975cc37c82bd443;hp=112a550cf2d105d2c9a57bb721aae1338aebb2d3;hpb=c2976785362be3ad0b8167873a1151c181bd64c9;p=hashcat.git diff --git a/OpenCL/m11500_a0.cl b/OpenCL/m11500_a0.cl index 112a550..4feacf9 100644 --- a/OpenCL/m11500_a0.cl +++ b/OpenCL/m11500_a0.cl @@ -93,7 +93,7 @@ __constant u32 crc32tab[0x100] = 0xb40bbe37, 0xc30c8ea1, 0x5a05df1b, 0x2d02ef8d }; -static u32x round_crc32 (u32x a, const u32x v) +u32x round_crc32 (u32x a, const u32x v) { const u32x k = (a ^ v) & 0xff; @@ -116,7 +116,7 @@ static u32x round_crc32 (u32x a, const u32x v) return a; } -static u32x crc32 (const u32x w[16], const u32 pw_len, const u32 iv) +u32x crc32 (const u32x w[16], const u32 pw_len, const u32 iv) { u32x a = iv ^ ~0;