aboutsummaryrefslogtreecommitdiffstats
path: root/src/implementation.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/implementation.h')
-rw-r--r--src/implementation.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/implementation.h b/src/implementation.h
new file mode 100644
index 0000000..f41cc4a
--- /dev/null
+++ b/src/implementation.h
@@ -0,0 +1,17 @@
+#ifndef IMPLEMENTATION_H
+#define IMPLEMENTATION_H
+
+#define GPG_PUBLICKEY_MAXLENGTH 1025 // +1 for '\0'
+
+void checkForbiddenPaths(char *path);
+char *getGPGKey(char *dest, size_t size);
+char* getPassword(char *path_pass, char *password, size_t size, int flag_copy);
+void nonvisibleEnter(int status);
+void insertPass(char *add_path, char *password, int flag_copy);
+char *typePass(char *text, char *dest, int minlen, int maxlen);
+int userEnterPassword(int minlen, int maxlen, char *path_insert, int flag_echo, int flag_copy);
+char *generatePassword(char *dest, int amount, int max_len);
+unsigned long hash(char *str);
+int getOverwriteAnswer(char *path);
+
+#endif \ No newline at end of file