Whatever message this page gives is out now! Go check it out!
verifyEncryptedJWT(token, EncryptOptions, config)| Parameter | Description | Required |
| token | Encrypted token created by ColdFusion. | Yes |
| encryptOptions | Create the signature using the struct below:
| Yes |
| config | A struct with the following values:
| Yes |
<cfset encr = {
"keystore" = "test_encryption1.keystore",
"keystoreAlias" = "contentKey",
"keystorePassword" = "****",
"keypairPassword" = "****"
}>
<cfset c = {
"algorithm" = "RSA-OAEP",
"encryption" = "A128CBC-HS256"
}>
<cfset config = {
"returnType" = "struct"
}>
<cfset verifyjwe = VerifyEncryptedJWT(#URL.jwe#, encr, config)>
<cfdump var="#verifyjwe#">