diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2017-07-27 23:45:04 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2017-07-27 23:45:04 +0200 |
commit | bb078fd01e6568982044e0f846029b9670f7f6df (patch) | |
tree | 3d262bd23749c977a18542096515b0c9144dd5d2 /utils/decrypt_file.cpp | |
parent | test: support running scripts from other dirs (diff) | |
download | aes-tools-bb078fd01e6568982044e0f846029b9670f7f6df.tar.gz aes-tools-bb078fd01e6568982044e0f846029b9670f7f6df.zip |
code style
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); } |