1 | 1 |
new file mode 100644 |
... | ... |
@@ -0,0 +1,16 @@ |
1 |
+/* |
|
2 |
+ * kakumei_pass.h |
|
3 |
+ * |
|
4 |
+ * Password handling for kakumei. |
|
5 |
+ * |
|
6 |
+ * Header file |
|
7 |
+ * |
|
8 |
+ * Author: Dario Rodriguez dario@softhome.net |
|
9 |
+ * This progran is licensed under the terms of the Affero GPL v1+ |
|
10 |
+ */ |
|
11 |
+ |
|
12 |
+#include "kakumei.h" |
|
13 |
+ |
|
14 |
+int pass_new(kakumei *ka, char *user, char *passwd); |
|
15 |
+int pass_check(kakumei *ka, char *user, char *passwd); |
|
16 |
+ |