Sample code for 30+ languages & platforms
Lianja

Decrypt a JWE with a Private Key

See more JSON Web Encryption (JWE) Examples

Demonstrates Jwe.SetPrivateKey, which sets the private key used to decrypt a recipient of a loaded JWE.

The file path is relative to the application's current working directory. An absolute path may also be used. Supply the path appropriate to your own environment.

Background. The private key unwraps the content-encryption key that was wrapped with the corresponding public key during encryption.

Chilkat Lianja Downloads

Lianja
llSuccess = .F.

loJwe = createobject("CkJwe")

//  Load the JWE compact serialization to be decrypted.
lcJweCompact = "eyJhbGciOiJBMjU2S1ciLCJlbmMiOiJBMjU2R0NNIn0.<...>.<iv>.<ciphertext>.<tag>"
llSuccess = loJwe.LoadJwe(lcJweCompact)
if (llSuccess = .F.) then
    ? loJwe.LastErrorText
    release loJwe
    return
endif

//  The file path is relative to the application's current working directory.  An absolute path
//  may also be used.  Supply the path appropriate to your own environment.
//  Load the recipient's private key.
loPrivKey = createobject("CkPrivateKey")
llSuccess = loPrivKey.LoadPemFile("qa_data/recipient_privkey.pem")
if (llSuccess = .F.) then
    ? loPrivKey.LastErrorText
    release loJwe
    release loPrivKey
    return
endif

//  Set the private key used to decrypt recipient 0.
llSuccess = loJwe.SetPrivateKey(0,loPrivKey)
if (llSuccess = .F.) then
    ? loJwe.LastErrorText
    release loJwe
    release loPrivKey
    return
endif

lcContent = loJwe.Decrypt(0,"utf-8")
if (loJwe.LastMethodSuccess = .F.) then
    ? loJwe.LastErrorText
    release loJwe
    release loPrivKey
    return
endif

? lcContent


release loJwe
release loPrivKey