]> git.proxmox.com Git - mirror_acme.sh.git/commitdiff
Replace some functions
authorKincaidYang <91786638+KincaidYang@users.noreply.github.com>
Wed, 6 Sep 2023 04:57:19 +0000 (12:57 +0800)
committerGitHub <noreply@github.com>
Wed, 6 Sep 2023 04:57:19 +0000 (12:57 +0800)
dnsapi/dns_tencent.sh

index 5cce4aeb866ce56d35545601998985211671a667..b926225b06e041c3d585e59c0150d0f2fdb76ba7 100644 (file)
@@ -150,7 +150,7 @@ tencent_sha256() {
 tencent_hmac_sha256() {
   k=$1
   shift
-  hex_key=$(_ascii_hex "$k" | tr -d ' ')
+  hex_key=$(printf %b "$k" | _hex_dump | tr -d ' ')
   printf %b "$@" | _hmac sha256 "$hex_key" hex
 }
 
@@ -183,6 +183,7 @@ tencent_signature_v3() {
 
   credentialScope="$date/$service/tc3_request"
   stringToSign="$algorithm\n$timestamp\n$credentialScope\n$(tencent_sha256 "$canonicalRequest")"
+  _debug "stringToSign: $stringToSign"
 
   secretDate=$(tencent_hmac_sha256 "TC3$secretKey" "$date")
   secretService=$(tencent_hmac_sha256_hexkey "$secretDate" "$service")