openssl_file_encryption/README.md

15 lines
598 B
Markdown
Raw Normal View History

2024-02-02 16:00:39 +01:00
# Crypter
2024-04-17 12:03:02 +02:00
Script to encrypt and decrypt files easily using openssl.
2024-02-02 16:00:39 +01:00
## Howto
2024-04-17 12:03:02 +02:00
./crypter.sh -[e/d] [inputfile] --no-verify
2024-02-21 10:29:45 +01:00
### Options
2024-04-17 12:03:02 +02:00
-e for encrypt - Encrypts the filename and adds a hash file.
-d for decrypt - Decrypts the file and removes crypt files after hash check.
--no-verify - Decrypts the file without comparing the hash.
2024-02-02 16:00:39 +01:00
## Additional info
2024-02-23 09:25:16 +01:00
Uses des-ede3-cbc pbkdf2 with salt by default but can be configured in the ~/.crypter/.algos file.\
2024-04-17 12:03:02 +02:00
Files are converted using base64 encoding.
2024-02-23 09:25:16 +01:00
2024-04-17 12:03:02 +02:00
Files hash is checked uppon decrypting\
This can be ignored using the --no-verify flag.