3 lines
105 B
Bash
3 lines
105 B
Bash
read -p 'Enter Key to encrypt:' key
|
|
echo "${key}" | gpg --cipher-algo AES256 --symmetric --armor >cypher
|