2
0
mirror of https://github.com/gchq/CyberChef synced 2026-01-02 00:23:55 +00:00

misc: typo

This commit is contained in:
Guilhem Radonde
2025-01-10 09:32:41 +01:00
committed by GitHub
parent 3822c6c520
commit cc7cc7f8fd

View File

@@ -22,7 +22,7 @@ class JWTVerify extends Operation {
this.name = "JWT Verify";
this.module = "Crypto";
this.description = "Verifies that a JSON Web Token is valid and has been signed with the provided secret / private key.<br><br>The key should be either the secret for HMAC algorithms or the PEM-encoded private key for RSA and ECDSA.";
this.description = "Verifies that a JSON Web Token is valid and has been signed with the provided secret / private key.<br><br>The key should be either the secret for HMAC algorithms or the PEM-encoded public key for RSA and ECDSA.";
this.infoURL = "https://wikipedia.org/wiki/JSON_Web_Token";
this.inputType = "string";
this.outputType = "JSON";