main: links to actions
This commit is contained in:
parent
83e0e3ad58
commit
d3b377179f
128
src/actions.cpp
128
src/actions.cpp
|
@ -18,9 +18,131 @@
|
||||||
|
|
||||||
#include "actions.h"
|
#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&)
|
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;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -26,7 +26,68 @@
|
||||||
#include "keyring.h"
|
#include "keyring.h"
|
||||||
#include "algorithm.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&);
|
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
|
#endif
|
||||||
|
|
51
src/main.cpp
51
src/main.cpp
|
@ -318,26 +318,75 @@ int main (int argc, char**argv)
|
||||||
|
|
||||||
switch (action) {
|
switch (action) {
|
||||||
case 'g':
|
case 'g':
|
||||||
exitval = action_keygen (action_param, name, KR, AS);
|
exitval = action_gen_key (action_param, name, KR, AS);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'e':
|
case 'e':
|
||||||
|
exitval = action_encrypt (recipient, opt_armor, KR, AS);
|
||||||
|
break;
|
||||||
|
|
||||||
case 'd':
|
case 'd':
|
||||||
|
exitval = action_decrypt (opt_armor, KR, AS);
|
||||||
|
break;
|
||||||
|
|
||||||
case 's':
|
case 's':
|
||||||
|
exitval = action_sign (user, opt_armor, detach_sign, KR, AS);
|
||||||
|
break;
|
||||||
|
|
||||||
case 'v':
|
case 'v':
|
||||||
|
exitval = action_verify (opt_armor, detach_sign, KR, AS);
|
||||||
|
break;
|
||||||
|
|
||||||
case 'E':
|
case 'E':
|
||||||
|
exitval = action_sign_encrypt (user, recipient, opt_armor,
|
||||||
|
KR, AS);
|
||||||
|
break;
|
||||||
|
|
||||||
case 'D':
|
case 'D':
|
||||||
|
exitval = action_decrypt_verify (opt_armor, KR, AS);
|
||||||
|
break;
|
||||||
|
|
||||||
case 'k':
|
case 'k':
|
||||||
|
exitval = action_list (opt_fingerprint, filter, KR);
|
||||||
|
break;
|
||||||
|
|
||||||
case 'i':
|
case 'i':
|
||||||
|
exitval = action_import (opt_armor, opt_import_no_action,
|
||||||
|
opt_yes, filter, name, KR);
|
||||||
|
break;
|
||||||
|
|
||||||
case 'p':
|
case 'p':
|
||||||
|
exitval = action_export (opt_armor, filter, name, KR);
|
||||||
|
break;
|
||||||
|
|
||||||
case 'x':
|
case 'x':
|
||||||
|
exitval = action_delete (opt_yes, action_param, KR);
|
||||||
|
break;
|
||||||
|
|
||||||
case 'm':
|
case 'm':
|
||||||
|
exitval = action_rename (opt_yes, action_param, name, KR);
|
||||||
|
break;
|
||||||
|
|
||||||
case 'K':
|
case 'K':
|
||||||
|
exitval = action_list_sec (opt_fingerprint, filter, KR);
|
||||||
|
break;
|
||||||
|
|
||||||
case 'I':
|
case 'I':
|
||||||
|
exitval = action_import_sec (opt_armor, opt_import_no_action,
|
||||||
|
opt_yes, filter, name, KR);
|
||||||
|
break;
|
||||||
|
|
||||||
case 'P':
|
case 'P':
|
||||||
|
exitval = action_export_sec (opt_armor, filter, name, KR);
|
||||||
|
break;
|
||||||
|
|
||||||
case 'X':
|
case 'X':
|
||||||
|
exitval = action_delete_sec (opt_yes, action_param, KR);
|
||||||
|
break;
|
||||||
|
|
||||||
case 'M':
|
case 'M':
|
||||||
|
exitval = action_rename_sec (opt_yes, action_param, name, KR);
|
||||||
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
progerr ("no action specified, use `--help'");
|
progerr ("no action specified, use `--help'");
|
||||||
|
|
Loading…
Reference in a new issue