1
0
mirror of synced 2024-11-24 15:00:17 +01:00

PEMToHex: add magic check so it gets found

This commit is contained in:
CPlusSharp 2021-11-17 20:19:42 +01:00
parent 1dbcd2ac84
commit b7a978505f

View File

@ -28,6 +28,12 @@ class PEMToHex extends Operation {
this.inputType = "string";
this.outputType = "string";
this.args = [];
this.checks = [
{
"pattern": "----BEGIN ([A-Z][A-Z ]+[A-Z])-----",
"args": []
}
];
}
/**