Small code clean-up + improved the Makefile + detect GNU/Hurd operating system.
[slunkcrypt.git] / frontend / src / pwgen.h
blob5684faae2e173d0f4832fa3932addf5e9e8dbad7
1 /******************************************************************************/
2 /* SlunkCrypt, by LoRd_MuldeR <MuldeR2@GMX.de> */
3 /* This work has been released under the CC0 1.0 Universal license! */
4 /******************************************************************************/
6 #ifndef INC_SLUNKAPP_PWGEN_H
7 #define INC_SLUNKAPP_PWGEN_H
9 #include "platform.h"
10 #include <stdint.h>
12 char *read_passphrase(const CHR *const file_name);
13 int weak_passphrase(const char *str);
14 int generate_passphrase(const size_t length);
16 #endif