VerifyJWT
JWT (JSON Web Token) is an open standard that defines a compact and self-contained way for securely transmitting information between parties as a JSON object. To transmit information (send and receive), VerifyJWT is used in conjunction with CreateJWT.
Properties
Token
The encoded token. (See the CreateJWT function for details on how to create a token.)
Algorithm
The algorithm used to encode the token.
Available only when the selected Algorithm is ES256, ES384 or ES512.
Load certificate from file
Select to load the ECDSA key from a file.
Private key
Available only when the Load certificate from file property is not selected.
The private key as List
Certificate file path
Available only when the Load certificate from file property is selected.
The file path to load the ECDSA key from.
Certificate password
Available only when the Load certificate from file property is selected.
The password protecting the key file.
Links
Introduction to JSON Web Tokens