aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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,