Merge pull request #6333 from EfficientIP-Labs/dns_efficientip

Implement DNS API for Efficientip SOLIDserver
This commit is contained in:
neil
2025-12-08 18:46:59 +01:00
committed by GitHub
2 changed files with 140 additions and 1 deletions

View File

@@ -1031,7 +1031,7 @@ _digest() {
outputhex="$2"
if [ "$alg" = "sha256" ] || [ "$alg" = "sha1" ] || [ "$alg" = "md5" ]; then
if [ "$alg" = "sha3-256" ] || [ "$alg" = "sha256" ] || [ "$alg" = "sha1" ] || [ "$alg" = "md5" ]; then
if [ "$outputhex" ]; then
${ACME_OPENSSL_BIN:-openssl} dgst -"$alg" -hex | cut -d = -f 2 | tr -d ' '
else