Commit 6654d7a9 authored by neil's avatar neil
Browse files

fix format

parent 44743b5f
...@@ -1018,7 +1018,7 @@ _sign() { ...@@ -1018,7 +1018,7 @@ _sign() {
if [ "$__ECC_KEY_LEN" -eq "256" ]; then if [ "$__ECC_KEY_LEN" -eq "256" ]; then
while [ "${#_ec_r}" -lt "64" ]; do while [ "${#_ec_r}" -lt "64" ]; do
_ec_r="0${_ec_r}" _ec_r="0${_ec_r}"
done done
while [ "${#_ec_s}" -lt "64" ]; do while [ "${#_ec_s}" -lt "64" ]; do
_ec_s="0${_ec_s}" _ec_s="0${_ec_s}"
done done
...@@ -1026,7 +1026,7 @@ _sign() { ...@@ -1026,7 +1026,7 @@ _sign() {
if [ "$__ECC_KEY_LEN" -eq "384" ]; then if [ "$__ECC_KEY_LEN" -eq "384" ]; then
while [ "${#_ec_r}" -lt "96" ]; do while [ "${#_ec_r}" -lt "96" ]; do
_ec_r="0${_ec_r}" _ec_r="0${_ec_r}"
done done
while [ "${#_ec_s}" -lt "96" ]; do while [ "${#_ec_s}" -lt "96" ]; do
_ec_s="0${_ec_s}" _ec_s="0${_ec_s}"
done done
...@@ -1034,7 +1034,7 @@ _sign() { ...@@ -1034,7 +1034,7 @@ _sign() {
if [ "$__ECC_KEY_LEN" -eq "512" ]; then if [ "$__ECC_KEY_LEN" -eq "512" ]; then
while [ "${#_ec_r}" -lt "132" ]; do while [ "${#_ec_r}" -lt "132" ]; do
_ec_r="0${_ec_r}" _ec_r="0${_ec_r}"
done done
while [ "${#_ec_s}" -lt "132" ]; do while [ "${#_ec_s}" -lt "132" ]; do
_ec_s="0${_ec_s}" _ec_s="0${_ec_s}"
done done
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment