diff --git a/README.md b/README.md index d6aeb50..0b0ad01 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ export FOO=secret export BAR=alsosecret ``` -If they are encrypted with `openssl aes-256-cbc -e -in secret-env-plain -out secret-env-cipher -k $KEY`, and `$KEY` is set +If they are encrypted with `openssl aes-256-cbc -e -md sha256 -in secret-env-plain -out secret-env-cipher -k $KEY`, and `$KEY` is set in the CircleCI project, the variables in `secret-env-plain` will be available in the build. -You could use the same process but replace the `openssl` command in `circle.yml` with `openssl aes-256-cbc -d -in secret-file-cipher -out secret-file-plain -k $KEY` to create plaintext files in the build environment instead of just exporting environment variables. +You could use the same process but replace the `openssl` command in `circle.yml` with `openssl aes-256-cbc -d -md sha256 -in secret-file-cipher -out secret-file-plain -k $KEY` to create plaintext files in the build environment instead of just exporting environment variables.