Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
Acme.Sh
Commits
16d79eba
"docs/extn-developer-faq.md" did not exist on "ddeb26c458b44e55613a0bcb16cc5d37ac06679f"
Commit
16d79eba
authored
Nov 20, 2016
by
neilpang
Browse files
fix format
parent
e009ec8b
Changes
2
Show whitespace changes
Inline
Side-by-side
acme.sh
View file @
16d79eba
...
...
@@ -335,7 +335,7 @@ _hex() {
_str_len
=
${#
_str
}
_h_i
=
1
while
[
"
$_h_i
"
-le
"
$_str_len
"
]
;
do
_str_c
=
"
$(
printf
"%s"
"
$_str
"
|
cut
-c
"
$_h_i
"
)
"
_str_c
=
"
$(
printf
"%s"
"
$_str
"
|
cut
-c
"
$_h_i
"
)
"
printf
"%02x"
"'
$_str_c
"
_h_i
=
"
$(
_math
"
$_h_i
"
+ 1
)
"
done
...
...
dnsapi/dns_aws.sh
View file @
16d79eba
...
...
@@ -46,18 +46,15 @@ dns_aws_add() {
return
0
fi
return
1
;
return
1
}
#fulldomain
dns_aws_rm
()
{
fulldomain
=
$1
}
#################### Private functions bellow ##################################
_get_root
()
{
...
...
@@ -96,7 +93,6 @@ _get_root() {
return
1
}
#method uri qstr data
aws_rest
()
{
mtd
=
"
$1
"
...
...
@@ -137,13 +133,13 @@ aws_rest() {
CanonicalRequest
=
"
$mtd
\n
$CanonicalURI
\n
$CanonicalQueryString
\n
$CanonicalHeaders
\n
$SignedHeaders
\n
$(
printf
"%s"
"
$RequestPayload
"
| _digest
"
$Hash
"
hex
)
"
_debug2 CanonicalRequest
"
$CanonicalRequest
"
HashedCanonicalRequest
=
"
$(
printf
"
$CanonicalRequest
%s"
| _digest
"
$Hash
"
hex
)
"
HashedCanonicalRequest
=
"
$(
printf
"
$CanonicalRequest
%s"
| _digest
"
$Hash
"
hex
)
"
_debug2 HashedCanonicalRequest
"
$HashedCanonicalRequest
"
Algorithm
=
"AWS4-HMAC-SHA256"
_debug2 Algorithm
"
$Algorithm
"
RequestDateOnly
=
"
$(
echo
"
$RequestDate
"
|
cut
-c
1-8
)
"
RequestDateOnly
=
"
$(
echo
"
$RequestDate
"
|
cut
-c
1-8
)
"
_debug2 RequestDateOnly
"
$RequestDateOnly
"
Region
=
"us-east-1"
...
...
@@ -204,17 +200,3 @@ aws_rest() {
return
"
$_ret
"
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment