diff options
author | Jakub Sławiński | 2005-07-03 23:15:19 +0200 |
---|---|---|
committer | Joshua Judson Rosen | 2014-07-17 21:14:59 +0200 |
commit | f2e4a5f9b0919dc16ea83a8826e8d52b02178b38 (patch) | |
tree | d226d27a9b81d67fc4493b7b1856c0b040267d77 /src/first_run.h | |
parent | v0.7 (diff) | |
download | apf-f2e4a5f9b0919dc16ea83a8826e8d52b02178b38.tar.gz |
v0.7.1
- Added: afserver certificate storing and checking
- Modified: generating keys and certificate
- Fixed: creating apf directory
- Fixed: some bugs in proxy tunnel initialization
Diffstat (limited to 'src/first_run.h')
-rw-r--r-- | src/first_run.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/first_run.h b/src/first_run.h index 5a36ff6..ee9d6d5 100644 --- a/src/first_run.h +++ b/src/first_run.h @@ -21,9 +21,13 @@ #ifndef _JS_FIRST_RUN_H #define _JS_FIRST_RUN_H -int create_apf_dir(); +int create_apf_dir(char type); +int create_publickey_store(char**); int generate_rsa_key(char**); int generate_certificate(char**, char*); +char* get_store_filename(); +char* get_key_filename(); +char* get_cer_filename(); #endif |