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
1 changed files with 6 additions and 0 deletions

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": []
}
];
}
/**