mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-21 15:26:16 -04:00
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:
parent
8f182e4a9b
commit
7b54d9e873
4 changed files with 27 additions and 27 deletions
|
@ -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": {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue