main: hashfile frontend
This commit is contained in:
parent
6b220b7064
commit
6f50dab322
|
@ -317,7 +317,8 @@ int action_decrypt (bool armor,
|
||||||
|
|
||||||
|
|
||||||
int action_sign (const std::string&user, bool armor, const std::string&detach,
|
int action_sign (const std::string&user, bool armor, const std::string&detach,
|
||||||
bool clearsign, keyring&KR, algorithm_suite&AS)
|
bool clearsign, const std::string&symmetric,
|
||||||
|
keyring&KR, algorithm_suite&AS)
|
||||||
{
|
{
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -452,7 +453,7 @@ int action_sign (const std::string&user, bool armor, const std::string&detach,
|
||||||
|
|
||||||
|
|
||||||
int action_verify (bool armor, const std::string&detach,
|
int action_verify (bool armor, const std::string&detach,
|
||||||
bool clearsign, bool yes,
|
bool clearsign, bool yes, const std::string&symmetric,
|
||||||
keyring&KR, algorithm_suite&AS)
|
keyring&KR, algorithm_suite&AS)
|
||||||
{
|
{
|
||||||
/*
|
/*
|
||||||
|
|
|
@ -40,10 +40,11 @@ int action_decrypt (bool armor,
|
||||||
keyring&, algorithm_suite&);
|
keyring&, algorithm_suite&);
|
||||||
|
|
||||||
int action_sign (const std::string&user, bool armor, const std::string&detach,
|
int action_sign (const std::string&user, bool armor, const std::string&detach,
|
||||||
bool clearsign, keyring&, algorithm_suite&);
|
bool clearsign, const std::string&symmetric,
|
||||||
|
keyring&, algorithm_suite&);
|
||||||
|
|
||||||
int action_verify (bool armor, const std::string&detach,
|
int action_verify (bool armor, const std::string&detach,
|
||||||
bool clearsign, bool yes,
|
bool clearsign, bool yes, const std::string&symmetric,
|
||||||
keyring&, algorithm_suite&);
|
keyring&, algorithm_suite&);
|
||||||
|
|
||||||
int action_sign_encrypt (const std::string&user, const std::string&recipient,
|
int action_sign_encrypt (const std::string&user, const std::string&recipient,
|
||||||
|
|
28
src/main.cpp
28
src/main.cpp
|
@ -56,6 +56,9 @@ void print_help (char*pname)
|
||||||
out (" -u, --user use specified secret key");
|
out (" -u, --user use specified secret key");
|
||||||
out (" -C, --clearsign work with cleartext signatures");
|
out (" -C, --clearsign work with cleartext signatures");
|
||||||
out (" -b, --detach-sign specify file with detached signature");
|
out (" -b, --detach-sign specify file with detached signature");
|
||||||
|
out (" -S, --symmetric enable symmetric mode of operation where encryption");
|
||||||
|
out (" is done using symmetric cipher and signatures are");
|
||||||
|
out (" hashes, and specify a filename of symmetric key or hashes");
|
||||||
outeol;
|
outeol;
|
||||||
out ("Key management:");
|
out ("Key management:");
|
||||||
out (" -g, --gen-key generate specified keypair, `help' lists algorithms");
|
out (" -g, --gen-key generate specified keypair, `help' lists algorithms");
|
||||||
|
@ -119,7 +122,8 @@ int main (int argc, char**argv)
|
||||||
input, output,
|
input, output,
|
||||||
name, filter,
|
name, filter,
|
||||||
action_param,
|
action_param,
|
||||||
detach_sign;
|
detach_sign,
|
||||||
|
symmetric;
|
||||||
|
|
||||||
char action = 0;
|
char action = 0;
|
||||||
|
|
||||||
|
@ -170,6 +174,7 @@ int main (int argc, char**argv)
|
||||||
//action options
|
//action options
|
||||||
{"clearsign", 0, 0, 'C' },
|
{"clearsign", 0, 0, 'C' },
|
||||||
{"detach-sign", 1, 0, 'b' },
|
{"detach-sign", 1, 0, 'b' },
|
||||||
|
{"symmetric", 1, 0, 'S' },
|
||||||
|
|
||||||
{0, 0, 0, 0 }
|
{0, 0, 0, 0 }
|
||||||
};
|
};
|
||||||
|
@ -177,7 +182,7 @@ int main (int argc, char**argv)
|
||||||
option_index = -1;
|
option_index = -1;
|
||||||
c = getopt_long
|
c = getopt_long
|
||||||
(argc, argv,
|
(argc, argv,
|
||||||
"hVTayr:u:R:o:kipx:m:KIPX:M:g:N:F:fnsvedCb:",
|
"hVTayr:u:R:o:kipx:m:KIPX:M:g:N:F:fnsvedCb:S:",
|
||||||
long_opts, &option_index);
|
long_opts, &option_index);
|
||||||
if (c == -1) break;
|
if (c == -1) break;
|
||||||
|
|
||||||
|
@ -261,6 +266,8 @@ int main (int argc, char**argv)
|
||||||
read_flag ('C', opt_clearsign)
|
read_flag ('C', opt_clearsign)
|
||||||
read_single_opt ('b', detach_sign,
|
read_single_opt ('b', detach_sign,
|
||||||
"specify only one detach-sign file")
|
"specify only one detach-sign file")
|
||||||
|
read_single_opt ('S', symmetric,
|
||||||
|
"specify only one symmetric parameter")
|
||||||
|
|
||||||
#undef read_flag
|
#undef read_flag
|
||||||
#undef read_single_opt
|
#undef read_single_opt
|
||||||
|
@ -324,6 +331,16 @@ int main (int argc, char**argv)
|
||||||
goto exit;
|
goto exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (symmetric.length() ) switch (action) {
|
||||||
|
case 's':
|
||||||
|
case 'v':
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
progerr ("specified action doesn't support symmetric operation");
|
||||||
|
exitval = 1;
|
||||||
|
goto exit;
|
||||||
|
}
|
||||||
|
|
||||||
switch (action) {
|
switch (action) {
|
||||||
case 'g':
|
case 'g':
|
||||||
exitval = action_gen_key (action_param, name, KR, AS);
|
exitval = action_gen_key (action_param, name, KR, AS);
|
||||||
|
@ -339,13 +356,12 @@ int main (int argc, char**argv)
|
||||||
|
|
||||||
case 's':
|
case 's':
|
||||||
exitval = action_sign (user, opt_armor, detach_sign,
|
exitval = action_sign (user, opt_armor, detach_sign,
|
||||||
opt_clearsign, KR, AS);
|
opt_clearsign, symmetric, KR, AS);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'v':
|
case 'v':
|
||||||
exitval = action_verify (opt_armor, detach_sign,
|
exitval = action_verify (opt_armor, detach_sign, opt_clearsign,
|
||||||
opt_clearsign, opt_yes,
|
opt_yes, symmetric, KR, AS);
|
||||||
KR, AS);
|
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'E':
|
case 'E':
|
||||||
|
|
Loading…
Reference in a new issue