c-hash-breaker/client/calculateHash.h
2024-03-02 23:55:03 +01:00

9 lines
257 B
C

#ifndef CALCULATEHASH_H
#define CALCULATEHASH_H
#include "config.h"
char *generateMD5(
char *string_p); // Generate and store md5 hash into array of char pointer. Take string_p for source string, formattedHash for formatted result string.
#endif