aboutsummaryrefslogtreecommitdiffstats
path: root/src/cli/encryption.cpp
diff options
context:
space:
mode:
authorSimon Warta <[email protected]>2017-04-18 17:37:59 +0200
committerSimon Warta <[email protected]>2017-04-18 17:37:59 +0200
commitf53f4db7a231e3d7722b7c9dccf15c777706d1c8 (patch)
treecf76b85c58b8cb7d073330a8fff7002f39c77bba /src/cli/encryption.cpp
parent26475e2075f30c2348f5dfd1982464b90f5bc09a (diff)
Fix 3 space indent
Diffstat (limited to 'src/cli/encryption.cpp')
-rw-r--r--src/cli/encryption.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/cli/encryption.cpp b/src/cli/encryption.cpp
index 7bf7ae678..d3dfdd466 100644
--- a/src/cli/encryption.cpp
+++ b/src/cli/encryption.cpp
@@ -36,10 +36,10 @@ auto VALID_MODES = std::map<std::string, std::string>{
};
bool is_aead(const std::string &cipher)
- {
- return cipher.find("/GCM") != std::string::npos
- || cipher.find("/OCB") != std::string::npos;
- }
+ {
+ return cipher.find("/GCM") != std::string::npos
+ || cipher.find("/OCB") != std::string::npos;
+ }
secure_vector<byte> do_crypt(const std::string &cipher,
const secure_vector<byte> &input,