Secure Hash Algorithm 1 (SHA-1). More...
Go to the source code of this file.
Macros | |
#define | sha_rotl(n, x) ( ((x) << (n)) | ((x) >> (32-(n))) ) |
#define | sha_ch(x, y, z) ( ((x) & (y)) | ((~(x)) & (z)) ) |
#define | sha_parity(x, y, z) ( (x) ^ (y) ^ (z) ) |
#define | sha_maj(x, y, z) ( ((x) & (y)) | ((x) & (z)) | ((y) & (z)) ) |
Secure Hash Algorithm 1 (SHA-1).
Used to checksum the game-config / cache.
Definition in file sha1.cpp.
Definition at line 36 of file sha1.cpp.
Referenced by sha1_hash::next().
Definition at line 38 of file sha1.cpp.
Referenced by sha1_hash::next().
Definition at line 37 of file sha1.cpp.
Referenced by sha1_hash::next().