mirror of
https://github.com/dehydrated-io/dehydrated.git
synced 2026-02-24 19:34:50 +01:00
fix pubMod64 and thumbprint calculation
We must strip the trailing newline with `echo -n` before we pass it to perl to convert the hex to binary, not after.
This commit is contained in:
@@ -92,9 +92,9 @@ if [ ! -e "private_key.pem" ]; then
|
||||
fi
|
||||
|
||||
pubExponent64="$(printf "%06x" "$(openssl rsa -in private_key.pem -noout -text | grep publicExponent | head -1 | cut -d' ' -f2)" | perl -pe 's/([0-9a-f]{2})/chr hex $1/gie' | urlbase64)"
|
||||
pubMod64="$(echo -n "$(openssl rsa -in private_key.pem -noout -modulus | cut -d'=' -f2 | perl -pe 's/([0-9a-f]{2})/chr hex $1/gie')" | urlbase64)"
|
||||
pubMod64="$(echo -n "$(openssl rsa -in private_key.pem -noout -modulus | cut -d'=' -f2)" | perl -pe 's/([0-9a-f]{2})/chr hex $1/gie' | urlbase64)"
|
||||
|
||||
thumbprint="$(echo -n "$(echo -n '{"e":"'"${pubExponent64}"'","kty":"RSA","n":"'"${pubMod64}"'"}' | sha256sum | awk '{print $1}' | perl -pe 's/([0-9a-f]{2})/chr hex $1/gie')" | urlbase64)"
|
||||
thumbprint="$(echo -n "$(echo -n '{"e":"'"${pubExponent64}"'","kty":"RSA","n":"'"${pubMod64}"'"}' | sha256sum | awk '{print $1}')" | perl -pe 's/([0-9a-f]{2})/chr hex $1/gie' | urlbase64)"
|
||||
|
||||
if [ "${register}" = "1" ]; then
|
||||
echo "+ Registering account key with letsencrypt..."
|
||||
|
||||
Reference in New Issue
Block a user