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