Unverified Commit ef8a199a authored by neil's avatar neil Committed by GitHub
Browse files

Merge pull request #4057 from mrakopes/master

issue 3007 - fix base64 decoding logic for single- and multi-line encoded string
parents 69040dd6 9b6f7752
...@@ -983,9 +983,9 @@ _base64() { ...@@ -983,9 +983,9 @@ _base64() {
#Usage: multiline #Usage: multiline
_dbase64() { _dbase64() {
if [ "$1" ]; then if [ "$1" ]; then
${ACME_OPENSSL_BIN:-openssl} base64 -d -A
else
${ACME_OPENSSL_BIN:-openssl} base64 -d ${ACME_OPENSSL_BIN:-openssl} base64 -d
else
${ACME_OPENSSL_BIN:-openssl} base64 -d -A
fi fi
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment