static int get_hash_2(int index) { ARCH_WORD binary; binary = buffer[index].binary[0]; return DES_STD_HASH_2(binary); }
static int salt_hash(void *salt) { return DES_STD_HASH_2(*(ARCH_WORD *)salt) & (SALT_HASH_SIZE - 1); }
static int binary_hash_2(void *binary) { return DES_STD_HASH_2(*(ARCH_WORD *)binary); }
static int salt_hash(void *salt) { return DES_STD_HASH_2(*(ARCH_WORD *)salt) & 0x3FF; }