diff options
author | sinanmohd <sinan@sinanmohd.com> | 2024-04-06 18:06:58 +0530 |
---|---|---|
committer | sinanmohd <sinan@sinanmohd.com> | 2024-04-06 18:10:39 +0530 |
commit | 59831e558edccc86338d0fb24d28025ec6159cc1 (patch) | |
tree | ddb02a0514c173233d5970be23126c676dfb4cdf /include/libnpass/gpg.h | |
parent | 53a9bd75b4935cecd25edae72ad2f028013d8648 (diff) |
meson: split ./include
Diffstat (limited to 'include/libnpass/gpg.h')
-rw-r--r-- | include/libnpass/gpg.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/libnpass/gpg.h b/include/libnpass/gpg.h new file mode 100644 index 0000000..f5053bf --- /dev/null +++ b/include/libnpass/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); |