mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-15 12:29:35 +00:00
3daf0af480
Added docs/team.txt
20 lines
381 B
C
20 lines
381 B
C
/**
|
|
* Author......: See docs/credits.txt
|
|
* License.....: MIT
|
|
*/
|
|
|
|
#ifndef _BITOPS_H
|
|
#define _BITOPS_H
|
|
|
|
u32 is_power_of_2 (const u32 v);
|
|
|
|
u32 rotl32 (const u32 a, const u32 n);
|
|
u32 rotr32 (const u32 a, const u32 n);
|
|
u64 rotl64 (const u64 a, const u64 n);
|
|
u64 rotr64 (const u64 a, const u64 n);
|
|
|
|
u32 byte_swap_32 (const u32 n);
|
|
u64 byte_swap_64 (const u64 n);
|
|
|
|
#endif // _BITOPS_H
|