Created
October 10, 2017 17:37
-
-
Save mrled/b51b48048f12b3831d341e42ecc773db to your computer and use it in GitHub Desktop.
Encrypt / decrypt a tarball in git
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# {En,De}crypt the private/ directory | |
# WARNING: I haven't used this script in a long time | |
# I'm putting it here because I found it on my hard drive from ages ago | |
# yolo I guess | |
# The private/ directory should not be stored in version control | |
# Instead, this scripts creates a private.tar.encrypted.asc file | |
# out of the private/ directory, | |
# and can decrypt that file later. | |
set -e | |
get_abs_path() { | |
# Q: Why does this work? A: http://stackoverflow.com/a/21188136/868206 | |
echo "$(cd "$(dirname "$1")" && pwd)/$(basename "$1")" | |
} | |
SCRIPTPATH=`get_abs_path "$0"` | |
SCRIPTROOT=`dirname "$SCRIPTPATH"` | |
SCRIPTNAME=`basename "$SCRIPTPATH"` | |
PRIVATE_DIRNAME="private" | |
PRIVATE_DIRPATH="$SCRIPTROOT/$PRIVATE_DIRNAME" | |
PRIVATE_BAK="$SCRIPTROOT/private_bak" | |
PRIVATE_TAR="$SCRIPTROOT/private.tar" | |
PRIVATE_ENC="$SCRIPTROOT/private.tar.encrypted.asc" | |
encrypt_private() { | |
# This does no checking because we assume that private.tar.encrypted is in git. | |
tar c -C "$SCRIPTROOT" "$PRIVATE_DIRNAME" > "$PRIVATE_TAR" | |
gpg --cipher-algo AES256 --armor --output "$PRIVATE_ENC" --symmetric "$PRIVATE_TAR" | |
rm "$PRIVATE_TAR" | |
} | |
decrypt_private() { | |
if [ -d "$PRIVATE_DIRPATH" ]; then | |
if [ -d "$PRIVATE_BAK" ]; then | |
rm -rf "$PRIVATE_BAK" | |
fi | |
mv "$PRIVATE_DIRPATH" "$PRIVATE_BAK" | |
fi | |
gpg --output "$PRIVATE_TAR" --decrypt "$PRIVATE_ENC" | |
tar xf "$PRIVATE_TAR" -C "$SCRIPTROOT" | |
rm "$PRIVATE_TAR" | |
} | |
show_help() { | |
echo "$SCRIPTNAME - {en,de}crypt the private/ directory" | |
echo " The private/ directory should not be stored in version control" | |
echo " Usage: $SCRIPTNAME {enc,dec}" | |
echo " enc: encrypt the private/ directory" | |
echo " dec: decrypt the private/ directory" | |
} | |
case "$1" in | |
enc) | |
encrypt_private;; | |
dec) | |
decrypt_private;; | |
*) | |
show_help;; | |
esac |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment