aboutsummaryrefslogtreecommitdiff
path: root/src/cmd/auth/secstore/secchk.c
blob: 59e26d512ae6dfda4aec0a121c6ae5a7ad5ce2db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#include <u.h>
#include <libc.h>
#include <bio.h>
#include <ndb.h>

extern char* secureidcheck(char *user, char *response);
Ndb *db;

void
main(int argc, char **argv)
{
	Ndb *db2;

	if(argc!=2){
		fprint(2,"usage %s pinsecurid\n", argv[0]);
		exits("usage");
	}
	db = ndbopen("/lib/ndb/auth");
	if(db == 0)
		syslog(0, "secstore", "no /lib/ndb/auth");
	db2 = ndbopen(0);
	if(db2 == 0)
		syslog(0, "secstore", "no /lib/ndb/local");
	db = ndbcat(db, db2);
	print("user=%s\n", getenv("user"));
	print("%s\n", secureidcheck(getenv("user"), argv[1]));
	exits(0);
}