You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
237 B
11 lines
237 B
#ifndef _HASH_H_
|
|
#define _HASH_H_
|
|
|
|
#define BLOCKSIZE 8
|
|
|
|
// Hash manipulation helper functions
|
|
char *hash(char *hash_val, FILE *f);
|
|
void show_hash(char *hash_val);
|
|
int check_hash(const char *hash1, const char *hash2);
|
|
|
|
#endif // _HASH_H_
|
|
|