We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0bf2fca commit 88f8ea8Copy full SHA for 88f8ea8
1 file changed
doc/pam.example/pam_sqlite.c
@@ -4,6 +4,16 @@
4
// gcc -shared -o pam_sqlite.so pam_sqlite.o -lpam -lsqlite3
5
// cp pam_sqlite.so /usr/lib/security/
6
//
7
+// pam_sqlite.so 模块用到的数据库的表结构如下:
8
+//
9
+// 表名:users
10
+// 字段:username(用户名,主键)、password(密码,非空)
11
12
+// CREATE TABLE users (
13
+// username TEXT PRIMARY KEY,
14
+// password TEXT NOT NULL
15
+// );
16
17
18
#include <stdio.h>
19
#include <stdlib.h>
0 commit comments