ECDSA rename signature format "Concat HEX" to "P1363 HEX"

this format name is more specific and easier to search for on the internet
This commit is contained in:
CPlusSharp 2024-04-14 11:34:59 +02:00
parent 8f182e4a9b
commit 7b54d9e873
4 changed files with 27 additions and 27 deletions

View file

@ -47,7 +47,7 @@ class ECDSASign extends Operation {
type: "option",
value: [
"ASN.1 HEX",
"Concat HEX",
"P1363 HEX",
"JSON"
]
}
@ -83,7 +83,7 @@ class ECDSASign extends Operation {
case "ASN.1 HEX":
result = signatureASN1Hex;
break;
case "Concat HEX":
case "P1363 HEX":
result = r.KJUR.crypto.ECDSA.asn1SigToConcatSig(signatureASN1Hex);
break;
case "JSON": {