mirror of
https://github.com/gchq/CyberChef.git
synced 2025-04-20 14:56:19 -04:00
Set default paramater indices
This commit is contained in:
parent
857d3b6d17
commit
9eff9e5018
2 changed files with 8 additions and 4 deletions
|
@ -35,12 +35,14 @@ class SM2Decrypt extends Operation {
|
||||||
{
|
{
|
||||||
"name": "Input Format",
|
"name": "Input Format",
|
||||||
"type": "option",
|
"type": "option",
|
||||||
"value": ["C1C3C2", "C1C2C3"]
|
"value": ["C1C3C2", "C1C2C3"],
|
||||||
|
"defaultIndex": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "Curve",
|
name: "Curve",
|
||||||
type: "option",
|
type: "option",
|
||||||
"value": ["sm2p256v1"]
|
"value": ["sm2p256v1"],
|
||||||
|
"defaultIndex": 0
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -47,12 +47,14 @@ class SM2Encrypt extends Operation {
|
||||||
{
|
{
|
||||||
"name": "Output Format",
|
"name": "Output Format",
|
||||||
"type": "option",
|
"type": "option",
|
||||||
"value": ["C1C3C2", "C1C2C3"]
|
"value": ["C1C3C2", "C1C2C3"],
|
||||||
|
"defaultIndex": 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "Curve",
|
name: "Curve",
|
||||||
type: "option",
|
type: "option",
|
||||||
"value": ["sm2p256v1"]
|
"value": ["sm2p256v1"],
|
||||||
|
"defaultIndex": 0
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue