I hereby claim:
- I am ianhattendorf on github.
- I am ianhattendorf (https://keybase.io/ianhattendorf) on keybase.
- I have a public key ASCvgiAytoM5Aw0hGqOe0DJfEf6aS7AQ_VCma5ZSBcR1cAo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #!/bin/sh | |
| set -eu | |
| # Usage: ./decrypt-symmetric.sh [input-file] [output-file] [passphrase] | |
| gpg2 --passphrase "$3" --batch --yes --no-tty --output $2 --decrypt $1 |
| #!/bin/sh | |
| set -e | |
| set -u | |
| FILENAME="${1-encrypted.img}" | |
| FILESIZE="${2-32M}" | |
| # Create encrypted volume if it doesn't exist | |
| if [ ! -f "$FILENAME" ]; then |