diff options
Diffstat (limited to 'utils/decrypt_file.cpp')
-rw-r--r-- | utils/decrypt_file.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/utils/decrypt_file.cpp b/utils/decrypt_file.cpp index beaabff..6da3d17 100644 --- a/utils/decrypt_file.cpp +++ b/utils/decrypt_file.cpp @@ -24,7 +24,8 @@ namespace { const auto ciphertext_buf = file::read_file(ciphertext_path); const auto plaintext_buf = box.decrypt_buffer( - ciphertext_buf.data(), ciphertext_buf.size()); + ciphertext_buf.data(), + ciphertext_buf.size()); file::write_file(plaintext_path, plaintext_buf); } |