1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-02-16 17:42:04 +00:00

Fix copy/paste bug in -m 15700

This commit is contained in:
Jens Steube 2019-08-05 12:39:10 +02:00
parent d1ca061577
commit e8326f0ddf

View File

@ -36,7 +36,7 @@ inline __device__ uint4 operator ^= ( uint4 &a, const uint4 b) {
inline __device__ uint4 rotate (const uint4 a, const int n)
{
return ((a >> n) | ((a >> (32 - n))));
return ((a << n) | ((a >> (32 - n))));
}
#endif