2024-02-02 16:00:39 +01:00
|
|
|
# Crypter
|
|
|
|
Script to encrypt and decrypt files easily using openssl
|
|
|
|
## Howto
|
2024-02-21 10:29:45 +01:00
|
|
|
./crypter.sh -[e/-d] [inputfile]
|
|
|
|
### Options
|
|
|
|
-e for encrypt
|
|
|
|
-d for decrypt
|
2024-02-02 16:00:39 +01:00
|
|
|
## Additional info
|
2024-02-21 10:29:45 +01:00
|
|
|
Uses des-ede3-cbc pbkdf2 with salt by default but can be configured in the $KEY variable.\
|
2024-02-21 11:29:21 +01:00
|
|
|
Files are converted using base64 encoding.
|