Skip to content

Commit

Permalink
misc: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
GuilhermoReadonly authored Jan 10, 2025
1 parent 3822c6c commit cc7cc7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/operations/JWTVerify.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down

0 comments on commit cc7cc7f

Please sign in to comment.