From 403ec2cc88e37c85a60081c36be23b8281bcdccd Mon Sep 17 00:00:00 2001 From: Mirek Kratochvil Date: Mon, 22 Apr 2013 07:38:21 +0200 Subject: [PATCH] actions: added clearsign to parameters --- src/actions.cpp | 4 ++-- src/actions.h | 4 ++-- src/main.cpp | 6 ++++-- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/src/actions.cpp b/src/actions.cpp index d6de331..11abc66 100644 --- a/src/actions.cpp +++ b/src/actions.cpp @@ -121,13 +121,13 @@ int action_decrypt (bool armor, int action_sign (const std::string&user, bool armor, const std::string&detach, - keyring&KR, algorithm_suite&AS) + bool clearsign, keyring&KR, algorithm_suite&AS) { return 0; } -int action_verify (bool armor, const std::string&detach, +int action_verify (bool armor, const std::string&detach, bool clearsign, keyring&KR, algorithm_suite&AS) { return 0; diff --git a/src/actions.h b/src/actions.h index aff1d92..4c08062 100644 --- a/src/actions.h +++ b/src/actions.h @@ -40,9 +40,9 @@ int action_decrypt (bool armor, keyring&, algorithm_suite&); int action_sign (const std::string&user, bool armor, const std::string&detach, - keyring&, algorithm_suite&); + bool clearsign, keyring&, algorithm_suite&); -int action_verify (bool armor, const std::string&detach, +int action_verify (bool armor, const std::string&detach, bool clearsign, keyring&, algorithm_suite&); int action_sign_encrypt (const std::string&user, const std::string&recipient, diff --git a/src/main.cpp b/src/main.cpp index 98a2551..83d3391 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -351,11 +351,13 @@ int main (int argc, char**argv) break; case 's': - exitval = action_sign (user, opt_armor, detach_sign, KR, AS); + exitval = action_sign (user, opt_armor, detach_sign, + opt_clearsign, KR, AS); break; case 'v': - exitval = action_verify (opt_armor, detach_sign, KR, AS); + exitval = action_verify (opt_armor, detach_sign, + opt_clearsign, KR, AS); break; case 'E':