aboutsummaryrefslogtreecommitdiffstats
path: root/FICS/fics_getsalt.h
diff options
context:
space:
mode:
authorMarkus Uhlin <markus@nifty-networks.net>2023-12-25 07:01:46 +0100
committerMarkus Uhlin <markus@nifty-networks.net>2023-12-25 07:01:46 +0100
commit895b5091904bee1eed34377aa52d1a8abfbe2fa8 (patch)
tree2887ab8b58c7821f452dbfe5e13086c1b45cf93a /FICS/fics_getsalt.h
parent68d06f6b826a9831f300a1c7c072076e0745d598 (diff)
fics_getsalt() -- initial revision
Diffstat (limited to 'FICS/fics_getsalt.h')
-rw-r--r--FICS/fics_getsalt.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/FICS/fics_getsalt.h b/FICS/fics_getsalt.h
new file mode 100644
index 0000000..c22f9c8
--- /dev/null
+++ b/FICS/fics_getsalt.h
@@ -0,0 +1,17 @@
+#ifndef FICS_GETSALT_H
+#define FICS_GETSALT_H
+
+#define FICS_SALT_BEG "$2b$10$"
+#define FICS_SALT_SIZE 30
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+char *fics_getsalt(void);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif