From d3b377179f1d3a0cc0907bb7c408e93549e9e2fa Mon Sep 17 00:00:00 2001 From: Mirek Kratochvil Date: Sat, 20 Apr 2013 22:39:51 +0200 Subject: [PATCH] main: links to actions --- src/actions.cpp | 128 ++++++++++++++++++++++++++++++++++++++++++++++-- src/actions.h | 63 +++++++++++++++++++++++- src/main.cpp | 51 ++++++++++++++++++- 3 files changed, 237 insertions(+), 5 deletions(-) diff --git a/src/actions.cpp b/src/actions.cpp index 4b5b2cf..8b56171 100644 --- a/src/actions.cpp +++ b/src/actions.cpp @@ -18,9 +18,131 @@ #include "actions.h" -int action_keygen (const std::string& algspec, const std::string&name, - keyring&, algorithm_suite&) +int action_gen_key (const std::string& algspec, const std::string&name, + keyring&, algorithm_suite&) +{ + return 0; +} + +/* + * signatures/encryptions + */ + +int action_encrypt (const std::string&recipient, bool armor, + keyring&, algorithm_suite&) +{ + return 0; +} + + +int action_decrypt (bool armor, + keyring&, algorithm_suite&) +{ + return 0; +} + + +int action_sign (const std::string&user, bool armor, const std::string&detach, + keyring&, algorithm_suite&) +{ + return 0; +} + + +int action_verify (bool armor, const std::string&detach, + keyring&, algorithm_suite&) +{ + return 0; +} + + +int action_sign_encrypt (const std::string&user, const std::string&recipient, + bool armor, keyring&, algorithm_suite&) +{ + return 0; +} + + +int action_decrypt_verify (bool armor, keyring&, algorithm_suite&) +{ + return 0; +} + + +/* + * keyring stuff + */ + +int action_list (bool nice_fingerprint, const std::string&filter, + keyring&) +{ + return 0; +} + + +int action_import (bool armor, bool no_action, bool yes, + const std::string&filter, const std::string&name, + keyring&) +{ + return 0; +} + + +int action_export (bool armor, + const std::string&filter, const std::string&name, + keyring&) +{ + return 0; +} + + +int action_delete (bool yes, const std::string&filter, keyring&) +{ + return 0; +} + + +int action_rename (bool yes, + const std::string&filter, const std::string&name, + keyring&) +{ + return 0; +} + + + +int action_list_sec (bool nice_fingerprint, const std::string&filter, + keyring&) +{ + return 0; +} + + +int action_import_sec (bool armor, bool no_action, bool yes, + const std::string&filter, const std::string&name, + keyring&) +{ + return 0; +} + + +int action_export_sec (bool armor, + const std::string&filter, const std::string&name, + keyring&) +{ + return 0; +} + + +int action_delete_sec (bool yes, const std::string&filter, keyring&) +{ + return 0; +} + + +int action_rename_sec (bool yes, + const std::string&filter, const std::string&name, + keyring&) { - return 0; } diff --git a/src/actions.h b/src/actions.h index 468ad03..3d052e7 100644 --- a/src/actions.h +++ b/src/actions.h @@ -26,7 +26,68 @@ #include "keyring.h" #include "algorithm.h" -int action_keygen (const std::string& algspec, const std::string&name, +int action_gen_key (const std::string& algspec, const std::string&name, + keyring&, algorithm_suite&); + +/* + * signatures/encryptions + */ + +int action_encrypt (const std::string&recipient, bool armor, + keyring&, algorithm_suite&); + +int action_decrypt (bool armor, + keyring&, algorithm_suite&); + +int action_sign (const std::string&user, bool armor, const std::string&detach, + keyring&, algorithm_suite&); + +int action_verify (bool armor, const std::string&detach, keyring&, algorithm_suite&); +int action_sign_encrypt (const std::string&user, const std::string&recipient, + bool armor, keyring&, algorithm_suite&); + +int action_decrypt_verify (bool armor, keyring&, algorithm_suite&); + +/* + * keyring stuff + */ + +int action_list (bool nice_fingerprint, const std::string&filter, + keyring&); + +int action_import (bool armor, bool no_action, bool yes, + const std::string&filter, const std::string&name, + keyring&); + +int action_export (bool armor, + const std::string&filter, const std::string&name, + keyring&); + +int action_delete (bool yes, const std::string&filter, keyring&); + +int action_rename (bool yes, + const std::string&filter, const std::string&name, + keyring&); + + +int action_list_sec (bool nice_fingerprint, const std::string&filter, + keyring&); + +int action_import_sec (bool armor, bool no_action, bool yes, + const std::string&filter, const std::string&name, + keyring&); + +int action_export_sec (bool armor, + const std::string&filter, const std::string&name, + keyring&); + +int action_delete_sec (bool yes, const std::string&filter, keyring&); + +int action_rename_sec (bool yes, + const std::string&filter, const std::string&name, + keyring&); + + #endif diff --git a/src/main.cpp b/src/main.cpp index 0e70a60..3d0736a 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -318,26 +318,75 @@ int main (int argc, char**argv) switch (action) { case 'g': - exitval = action_keygen (action_param, name, KR, AS); + exitval = action_gen_key (action_param, name, KR, AS); break; case 'e': + exitval = action_encrypt (recipient, opt_armor, KR, AS); + break; + case 'd': + exitval = action_decrypt (opt_armor, KR, AS); + break; + case 's': + exitval = action_sign (user, opt_armor, detach_sign, KR, AS); + break; + case 'v': + exitval = action_verify (opt_armor, detach_sign, KR, AS); + break; + case 'E': + exitval = action_sign_encrypt (user, recipient, opt_armor, + KR, AS); + break; + case 'D': + exitval = action_decrypt_verify (opt_armor, KR, AS); + break; case 'k': + exitval = action_list (opt_fingerprint, filter, KR); + break; + case 'i': + exitval = action_import (opt_armor, opt_import_no_action, + opt_yes, filter, name, KR); + break; + case 'p': + exitval = action_export (opt_armor, filter, name, KR); + break; + case 'x': + exitval = action_delete (opt_yes, action_param, KR); + break; + case 'm': + exitval = action_rename (opt_yes, action_param, name, KR); + break; + case 'K': + exitval = action_list_sec (opt_fingerprint, filter, KR); + break; + case 'I': + exitval = action_import_sec (opt_armor, opt_import_no_action, + opt_yes, filter, name, KR); + break; + case 'P': + exitval = action_export_sec (opt_armor, filter, name, KR); + break; + case 'X': + exitval = action_delete_sec (opt_yes, action_param, KR); + break; + case 'M': + exitval = action_rename_sec (opt_yes, action_param, name, KR); + break; default: progerr ("no action specified, use `--help'");