diff --git a/README.md b/README.md index 7e2a784..845f9fa 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,8 @@ # silver_smuggler Simple XOR file encryption/decryption. A simple app I made to learn Qt. +![A screenshot of Silver Smuggler](ss_screenshot.png) + This is a very simple application that allows you to encrypt and decrypt files with XOR. XOR is TRIVIALLY BREAKABLE and if you use this for anything that actually needs to be secret, you are fully responsible for all the awful things that will happen to you. The process: the user selects a file, which is encrypted and encoded with Base64. The Base64 text representation of the encrypted bytes can be sent to the recipient or stored. To decrypt, a user simply enters the key and pastes in the Base64 ciphertext. The Base64 representation is turned back into bytes, decrypted, and written out. diff --git a/ss_screenshot.png b/ss_screenshot.png new file mode 100644 index 0000000..4b7efa8 Binary files /dev/null and b/ss_screenshot.png differ