main: links to actions

This commit is contained in:
Mirek Kratochvil 2013-04-20 22:39:51 +02:00
parent 83e0e3ad58
commit d3b377179f
3 changed files with 237 additions and 5 deletions

View file

@ -18,9 +18,131 @@
#include "actions.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&)
{
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;
}

View file

@ -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

View file

@ -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'");