diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/gpg.h | 6 | ||||
-rw-r--r-- | include/libnpass.h | 7 | ||||
-rw-r--r-- | include/util.h | 18 |
3 files changed, 31 insertions, 0 deletions
diff --git a/include/gpg.h b/include/gpg.h new file mode 100644 index 0000000..f5053bf --- /dev/null +++ b/include/gpg.h @@ -0,0 +1,6 @@ +#include <stdio.h> +#include <sys/types.h> + +int gpg_key_validate(const char *fpr); +int gpg_decrypt(FILE *pass_out, const char *pass_path); +int gpg_encrypt(FILE *stream, const char *fpr, const char *pass, size_t n); diff --git a/include/libnpass.h b/include/libnpass.h new file mode 100644 index 0000000..d4b7fb4 --- /dev/null +++ b/include/libnpass.h @@ -0,0 +1,7 @@ +#include <stdio.h> + +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); diff --git a/include/util.h b/include/util.h new file mode 100644 index 0000000..f36965a --- /dev/null +++ b/include/util.h @@ -0,0 +1,18 @@ +#ifndef UTIL_H + +#include <stdio.h> +#include <stdlib.h> + +#define err_die(r, ...) {\ + fprintf(stderr, "%s:%d: ", __FILE__, __LINE__); \ + fprintf(stderr, __VA_ARGS__); \ + fputc('\n', stderr); \ + return r; \ +} + +int r_mkdir(const char *path, mode_t mode); +int r_rmdir(const char *prefix_path, char *rm_path); +void util_strtrim(char *s); + +#define UTIL_H +#endif |