1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-11 18:21:40 +00:00
hashcat/OpenCL/inc_luks_xts.cl

23 lines
440 B
Common Lisp
Raw Normal View History

/**
* Author......: See docs/credits.txt
* License.....: MIT
*/
#include "inc_vendor.h"
#include "inc_types.h"
2019-04-26 11:59:43 +00:00
#include "inc_platform.h"
#include "inc_common.h"
#include "inc_luks_xts.h"
DECLSPEC void xts_mul2 (u32 *in, u32 *out)
2017-01-21 14:37:44 +00:00
{
const u32 c = in[3] >> 31;
out[3] = (in[3] << 1) | (in[2] >> 31);
out[2] = (in[2] << 1) | (in[1] >> 31);
out[1] = (in[1] << 1) | (in[0] >> 31);
out[0] = (in[0] << 1);
out[0] ^= c * 0x87;
}