aboutsummaryrefslogtreecommitdiffstats
path: root/src/implementation.h
blob: f0343f22e90a85dcbc15b0999351d4f7a486b226 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef IMPLEMENTATION_H
#define IMPLEMENTATION_H

#define GPG_PUBLICKEY_MAXLENGTH 1024


void copy_outside(char *password);
int check_sneaky_paths(const char *path);
char *get_pubkey();
char *get_password(const char *path);
void visible_enter(int status);
int insert_pass(const char *path, const char *password);
char *get_input(int minlen, int maxlen);
void gen_password(char *dest, int amount);
int overwrite_answer(const char *path);

#endif