aboutsummaryrefslogtreecommitdiff
path: root/include/libnpass/libnpass.h
blob: f1e3d743802149a34ae565defe7e8dc0e1223746 (plain) (blame)
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
29
30
31
32
33
34
35
36
37
#include <stdio.h>
#include <dirent.h>
#include <linux/limits.h>

#define PASS_DEF_LEN	32

typedef enum {
	PASS_GEN_DIGIT = 0,
	PASS_GEN_ALNUM = 1,
	PASS_GEN_GRAPH = 2,
} pass_gen_t;

typedef enum {
	PASS_STORE_DIR = 0,
	PASS_STORE_ENC = 1,
	PASS_STORE_INV = 2,
} pass_store_t;

struct store {
	char          name[NAME_MAX];
	pass_store_t  type;
};

DIR *openstore(const char *spath);
int readstore(DIR *dirp, struct store *s);
int readstore_all(const char *path, struct store **stor);

pass_store_t pass_store_type(const char *spath);
int pass_store_cmp(const void *vp1, const void *vp2);

int pass_init(const char *fpr);
int pass_cat(FILE *out, const char *path);
int pass_add(const char *path, const char *pass, size_t n);
int pass_rm(const char *path);

ssize_t pass_getpass(char **lineptr, size_t *n, FILE *stream);
int pass_gen(pass_gen_t gen, char *pass, size_t n);