Table of Contents
Qt6 C++23 Desktop application to encrypt / decrypt the given file.
- Encryption: AES-256 CBC
- Password: SHA256, between 5 to 32 characters
- initialization vector: MD5
see also the commandline version qt-cli_file_encryption-decryption
-
i18n: Desktop application supports German and English language
-
encrypt/decrypt every readable file (binary-mode, chunk size 4MB)
-
runs on DOS/Windows
-
runs on MacOS
-
runs on Linux
-
runs on iOS
-
runs on Android
-
runs on HarmonyOS
-
OSS and license
-
works as designed
-
no bugs
-
some more or less usefull Github Actions for GH-repo, GH-pages, GH-wiki, CI/CD-Pipelines
-
Packagemanager
-
Buildsystem: CMake
-
Installation routine (no Adminstrator rights needed)
-
portable application
Caution
Please be aware of breaking changes
Version | status | Comment |
---|---|---|
v0.1.0 | NOT compatible to higher versions. | initial creation, text mode |
v1.0.0 | NOT compatible with lower versions. | optimized input/output, text mode limited to some text-based files |
v2.0.0 | NOT compatible with lower versions. | binary-mode, works on every readable file. No filesize limit. |
Tip
see also Screenshots
- choose a file to encrypt
- activate the checkbox to encrypt the source file (original file will be replaced with the encrypted one)
- keep checkbox unchecked to encrypt the given file into a new (encrypted) file.
- encrypted file will be stored as
<filename>.aes
Warning
don't loose your password. Decryption/Recovery without valid password is impossible!
- choose a file to decrypt (only files with extension ".aes")
- activate the checkbox to decrypt the source file (original file will be replaced with the decrypted one)
- keep checkbox unchecked to decrypt the given file into a new (decrypted) file.
- decrypted file will be stored as
<originalfilename>
)
tested on
- x86_64 Ubuntu 24.04.2 LTS
- Intel(R) Core(TM) i5-9600K CPU @ 3.70GHz with 6 cpu cores
- average SSD storage
- fallocate -l 1G test.img
read / write binary mode of 1 GB file with a chunk size of 4 MB
type | val |
---|---|
real | 5m52,734s |
user | 5m49,905s |
sys | 0m2,391s |
read / write binary mode of 1 GB file with a chunk size of 16 MB
type | val |
---|---|
real | 5m50,753s |
user | 5m48,691s |
sys | 0m2,049s |
Note
so compiled chunk size is 4 MB to give better feedback about the process status.
(Menu: A/六)
-> DE|EN
)
(Menu: Info -> Help
or keyboard shortcut F1
)
(Menu: Info -> About
or keyboard shortcut A
)
Several installation packages are available, depending on your Linux system (deb, rpm, zip, AppImage).
Note
see (latest) Release for packages
- make DiskImage executable (eg.
chmod 755 file_encryption-decryption.dmg
) - execute / double-click on the
.dmg
file. A window should appear showing the program you are installing and the Applications Folder. - drag the program into the Applications Folder; macOS will automatically install the software for you.
- doubleclick
setup__file_encryption-decryption__x86_amd64_v<VERSION>.exe
(eg.:setup__file_encryption-decryption__x86_amd64_v1.1.0.exe
) - choose "install for all users" (Administrator rights needed)
- choose "install for current user only" (no Administrator rights needed)
- choose "select language (DE|EN) to use during installation"
For de-installation, go to Windows Settings -> Apps -> installed Apps
and choose within the hamburger menu "deinstallation"
- unzip
file_encryption-decryption__x86_amd64_v<VERSION>.zip
(eg.:file_encryption-decryption__x86_amd64_v1.1.0.zip
) to a folder - execute/doubleclick the executable
file_encryption-decryption_x86_amd64.exe
Note
rename CMakeLists.txt<OS-PLATFORM>
to CMakeLists.txt
Note
All licenses are therefore Open Source.
CMake: A Powerful Software Build System
Note
QT6 - Community Edition >= 6.7
The Qt framework contains a comprehensive set of highly intuitive and modularized C++ library classes and is loaded with APIs to simplify your application development. Qt produces highly readable, easily maintainable and reusable code with high runtime performance and small footprint – and it's cross-platform.
see also:Obligations of the GPL and LGPL
Small and portable AES encryption class for Qt. Native support for all key sizes - 128/192/256 bits - ECB, CBC, CFB and OFB modes for all key sizes partial AES-NI support
.
├── .github
│ ├── actions
│ │ └── doctoc
│ │ ├── README.md
│ │ ├── action.yml
│ │ └── dist
│ │ ├── index.js
│ │ ├── index.js.map
│ │ ├── licenses.txt
│ │ └── sourcemap-register.js
│ └── workflows
│ ├── ghp-call_Readme.yml
│ ├── ghp-create_doctoc.yml
│ ├── ghp-markdown_index.yml
│ ├── repo-actions_docu.yml
│ ├── repo-call_Readme.yml
│ ├── repo-create_doctoc.yml_
│ ├── repo-create_doctoc_md.yml
│ └── repo-create_tree_readme.yml
├── .gitignore
├── LICENSE
├── README.md
├── docs
│ └── img
│ ├── 00_setup_de.png
│ ├── 00_setup_en.png
│ ├── 01_de.png
│ ├── 01_setup_de.png
│ ├── 01_setup_en.png
│ ├── 01a_en.png
│ ├── 01b_en.png
│ ├── 02_de.png
│ ├── 02_en.png
│ ├── 02_setup_de.png
│ ├── 02_setup_en.png
│ ├── 03_de.png
│ ├── 03_en.png
│ ├── 03_setup_de.png
│ ├── 04_de.png
│ ├── 04_en.png
│ ├── 04_setup_de.png
│ ├── 04_setup_en.png
│ ├── 05_de.png
│ ├── 05_en.png
│ ├── 05_setup_de.png
│ ├── 05_setup_en.png
│ ├── 06_de.png
│ ├── 06_en.png
│ ├── 06_setup_de.png
│ ├── 06_setup_en.png
│ └── deinstall_en.png
├── src
│ ├── CMakeLists.txt
│ ├── CMakeLists.txt_Linux
│ ├── CMakeLists.txt_MacOS
│ ├── CMakeLists.txt_Windows
│ ├── configure
│ │ ├── ClangTidy.cmake
│ │ ├── Doxygen.cmake
│ │ ├── extra_headers
│ │ └── rz_config.h.in
│ ├── decrypt_file_dialog.cpp
│ ├── decrypt_file_dialog.h
│ ├── enc_dec_logic.cpp
│ ├── enc_dec_logic.h
│ ├── encrypt_file_dialog.cpp
│ ├── encrypt_file_dialog.h
│ ├── i18n
│ │ ├── de.png
│ │ ├── de_DE.qm
│ │ ├── en.png
│ │ ├── qt_file_encryption-decryption_de.qm
│ │ ├── qt_file_encryption-decryption_de.ts
│ │ ├── qt_file_encryption-decryption_en.qm
│ │ ├── qt_file_encryption-decryption_en.ts
│ │ ├── qtbase_de.qm
│ │ ├── qtbase_en.qm
│ │ └── translate.png
│ ├── images
│ │ ├── background.jpg
│ │ ├── icon-16x16.ico
│ │ ├── icon-256x256.ico
│ │ ├── icon-32x32.ico
│ │ ├── icon.png
│ │ └── icon.svg
│ ├── includes
│ │ ├── qaesencryption.cpp
│ │ ├── qaesencryption.h
│ │ ├── rz_config.h
│ │ └── rz_snipptes.hpp
│ ├── main.cpp
│ ├── menu_page.cpp
│ ├── menu_page.h
│ ├── resources
│ │ ├── Info.plist
│ │ ├── file_encryption-decryption.icns
│ │ ├── file_encryption-decryption.iconset
│ │ │ ├── icon_128x128.png
│ │ │ ├── [email protected]
│ │ │ ├── icon_16x16.png
│ │ │ ├── [email protected]
│ │ │ ├── icon_256x256.png
│ │ │ ├── [email protected]
│ │ │ ├── icon_32x32.png
│ │ │ ├── [email protected]
│ │ │ ├── icon_512x512.png
│ │ │ └── [email protected]
│ │ └── file_encryption-decryption.png
│ ├── resources.qrc
│ ├── template.cpp
│ └── template.h
└── tree.bak
15 directories, 98 files
Copyright (c) 2024 ZHENG Robert
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
🖖