9 lines
167 B
C++
9 lines
167 B
C++
|
#ifndef HATHOR_CRYPT_HH
|
||
|
#define HATHOR_CRYPT_HH
|
||
|
|
||
|
#include <crypt.h>
|
||
|
|
||
|
void gen_random(char *s, const int len);
|
||
|
const char * hathor_crypt(const char * password);
|
||
|
|
||
|
#endif
|