Sample code for 30+ languages & platforms
Xojo Plugin

Validate a JWS with a Public Key

See more JSON Web Signatures (JWS) Examples

Demonstrates Jws.SetPublicKey, which sets the public key used to validate a signature of a loaded JWS.

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 public key verifies a signature created with the corresponding private key. Validate returns 1 when valid, 0 when not, or a negative value on error.

Chilkat Xojo Plugin Downloads

Xojo Plugin
Dim success As Boolean
success = False

Dim jws As New Chilkat.Jws

//  Load the JWS compact serialization.
Dim jwsCompact As String
jwsCompact = "eyJhbGciOiJIUzI1NiJ9.VGhpcyBpcyB0aGUgY29udGVudCB0byBzaWduLg.<signature>"
success = jws.LoadJws(jwsCompact)
If (success = False) Then
    System.DebugLog(jws.LastErrorText)
    Return
End If

//  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 signer's public key and set it for validating signature 0.
Dim pubKey As New Chilkat.PublicKey
success = pubKey.LoadFromFile("qa_data/signer_pubkey.pem")
If (success = False) Then
    System.DebugLog(pubKey.LastErrorText)
    Return
End If

success = jws.SetPublicKey(0,pubKey)
If (success = False) Then
    System.DebugLog(jws.LastErrorText)
    Return
End If

//  Validate the signature.  Validate returns 1 when valid, 0 when not, or a negative value on error.
Dim v As Int32
v = jws.Validate(0)
If (v < 0) Then
    System.DebugLog(jws.LastErrorText)
    Return
End If

If (v <> 1) Then
    System.DebugLog("The signature is not valid.")
    Return
End If

System.DebugLog("The signature is valid.")