mirror of
https://github.com/plantroon/acme.sh.git
synced 2024-11-09 16:01:46 +00:00
fix format
This commit is contained in:
parent
44743b5f6f
commit
6654d7a919
6
acme.sh
6
acme.sh
@ -1018,7 +1018,7 @@ _sign() {
|
||||
if [ "$__ECC_KEY_LEN" -eq "256" ]; then
|
||||
while [ "${#_ec_r}" -lt "64" ]; do
|
||||
_ec_r="0${_ec_r}"
|
||||
done
|
||||
done
|
||||
while [ "${#_ec_s}" -lt "64" ]; do
|
||||
_ec_s="0${_ec_s}"
|
||||
done
|
||||
@ -1026,7 +1026,7 @@ _sign() {
|
||||
if [ "$__ECC_KEY_LEN" -eq "384" ]; then
|
||||
while [ "${#_ec_r}" -lt "96" ]; do
|
||||
_ec_r="0${_ec_r}"
|
||||
done
|
||||
done
|
||||
while [ "${#_ec_s}" -lt "96" ]; do
|
||||
_ec_s="0${_ec_s}"
|
||||
done
|
||||
@ -1034,7 +1034,7 @@ _sign() {
|
||||
if [ "$__ECC_KEY_LEN" -eq "512" ]; then
|
||||
while [ "${#_ec_r}" -lt "132" ]; do
|
||||
_ec_r="0${_ec_r}"
|
||||
done
|
||||
done
|
||||
while [ "${#_ec_s}" -lt "132" ]; do
|
||||
_ec_s="0${_ec_s}"
|
||||
done
|
||||
|
Loading…
Reference in New Issue
Block a user