DISQUS

BYU CS462 Forum: Slight Change to Lab 1

  • Dan Myers · 11 months ago
    For those of you out there who can't or don't want to password-protect a .zip file, you can use openssl on the command line to encrypt and decrypt your package file, for example:

    openssl aes-256-cbc -e -k mypassword -in package.tar.gz -out package.tar.gz.encrypted

    Then, to decrypt:

    openssl aes-256-cbc -d -k mypassword -in package.tar.gz.encrypted -out package.tar.gz

    Just don't share your password with anyone ;)