Sample code for 30+ languages & platforms
DataFlex

Create a JWS Using ECDSA P-521 SHA-512

See more JSON Web Signatures (JWS) Examples

Creates and verifies a JSON Web Signature (JWS) that uses ECDSA P-521 SHA-512

Chilkat DataFlex Downloads

DataFlex
Use ChilkatAx-win32.pkg

Procedure Test
    Boolean iSuccess
    Handle hoSbJwk
    Variant vEccKey
    Handle hoEccKey
ProtHdr    Handle hoJwsProtHdr
    Handle hoJws
    Integer iSignatureIndex
    Boolean iBIncludeBom
    String sPayloadStr
    String sJwsCompact
2    Handle hoJws2
    Variant vEccPubKey
    Handle hoEccPubKey
    Integer v
    Variant vJoseHeader
    Handle hoJoseHeader
    String sTemp1
    Boolean bTemp1

    Move False To iSuccess

    // This requires the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.

    // Note: This example requires Chilkat v9.5.0.66 or greater.

    // Use the following ECC key loaded from JWK format.
    Get Create (RefClass(cComChilkatStringBuilder)) To hoSbJwk
    If (Not(IsComObjectCreated(hoSbJwk))) Begin
        Send CreateComObject of hoSbJwk
    End
    Get ComAppend Of hoSbJwk '{"kty":"EC",' To iSuccess
    Get ComAppend Of hoSbJwk '"crv":"P-521",' To iSuccess
    Get ComAppend Of hoSbJwk '"x":"AekpBQ8ST8a8VcfVOTNl353vSrDCLLJXmPk06wTjxrrjcBpXp5EOnYG_NjFZ6OvLFV1jSfS9tsz4qUxcWceqwQGk",' To iSuccess
    Get ComAppend Of hoSbJwk '"y":"ADSmRA43Z1DSNx_RvcLI87cdL07l6jQyyBXMoxVg_l2Th-x3S1WDhjDly79ajL4Kkd0AZMaZmh9ubmf63e3kyMj2",' To iSuccess
    Get ComAppend Of hoSbJwk '"d":"AY5pb7A0UFiB3RELSD64fTLOSV_jazdF7fLYyuTw8lOfRhWg6Y6rUrPAxerEzgdRhajnu0ferB0d53vM9mE15j2C"' To iSuccess
    Get ComAppend Of hoSbJwk "}" To iSuccess

    Get Create (RefClass(cComChilkatPrivateKey)) To hoEccKey
    If (Not(IsComObjectCreated(hoEccKey))) Begin
        Send CreateComObject of hoEccKey
    End
    // Note: This example loads the ECDSA key from JWK format.  Any format can be loaded
    // into the private key object. (See the online reference documentation..)
    Get ComGetAsString Of hoSbJwk To sTemp1
    Get ComLoadJwk Of hoEccKey sTemp1 To iSuccess
    If (iSuccess = False) Begin
        Get ComLastErrorText Of hoEccKey To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    // Create the JWS Protected Header
    Get Create (RefClass(cComChilkatJsonObject)) To hoJwsProtHdr
    If (Not(IsComObjectCreated(hoJwsProtHdr))) Begin
        Send CreateComObject of hoJwsProtHdr
    End
    Get ComAppendString Of hoJwsProtHdr "alg" "ES512" To iSuccess

    Get Create (RefClass(cComChilkatJws)) To hoJws
    If (Not(IsComObjectCreated(hoJws))) Begin
        Send CreateComObject of hoJws
    End

    // Set the protected header:
    Move 0 To iSignatureIndex
    Get pvComObject of hoJwsProtHdr to vJwsProtHdr
    Get ComSetProtectedHeader Of hoJws iSignatureIndex vJwsProtHdr To iSuccess

    // Set the ECC key:
    Get pvComObject of hoEccKey to vEccKey
    Get ComSetPrivateKey Of hoJws iSignatureIndex vEccKey To iSuccess

    // Set the payload.
    Move False To iBIncludeBom
    Move "In our village, folks say God crumbles up the old moon into stars." To sPayloadStr
    Get ComSetPayload Of hoJws sPayloadStr "utf-8" iBIncludeBom To iSuccess

    // Create the JWS
    // By default, the compact serialization is used.
    Get ComCreateJws Of hoJws To sJwsCompact
    Get ComLastMethodSuccess Of hoJws To bTemp1
    If (bTemp1 = False) Begin
        Get ComLastErrorText Of hoJws To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    Showln "JWS: " sJwsCompact

    // Note: ECC signatures use random values, so the output will be different each time a signature is produced.
    // sample output:
    // JWS: eyJhbGciOiJFUzUxMiJ9.SW4gb3VyIHZpbGxhZ2UsIGZvbGtzIHNheSBHb2QgY3J1bWJsZXMgdXAgdGhlIG9sZCBtb29uIGludG8gc3RhcnMu.AFOnOtZ8UTp-ed1PfLfXxwGU7zT_jnmGGxew-d1CP6SfKa5RUhav5mF4szhSof22JaoQ742VIa0eZ0s1rhBnj8y6APr6g6vKzIpYZlJsnjzjUwAjDQOLmcsjxrrRfATh-NEv7G0Z9FrjdJasS44tCG2EnG6aT2TW-sPG0dy5o9jUWCzi

    // Now load the JWS, validate, and recover the original text.
    Get Create (RefClass(cComChilkatJws)) To hoJws2
    If (Not(IsComObjectCreated(hoJws2))) Begin
        Send CreateComObject of hoJws2
    End

    // Load the JWS.
    Get ComLoadJws Of hoJws2 sJwsCompact To iSuccess

    Get Create (RefClass(cComChilkatPublicKey)) To hoEccPubKey
    If (Not(IsComObjectCreated(hoEccPubKey))) Begin
        Send CreateComObject of hoEccPubKey
    End
    Get pvComObject of hoEccPubKey to vEccPubKey
    Get ComToPublicKey Of hoEccKey vEccPubKey To iSuccess

    // Set the ECC public key used for validation.
    Move 0 To iSignatureIndex
    Get pvComObject of hoEccPubKey to vEccPubKey
    Get ComSetPublicKey Of hoJws2 iSignatureIndex vEccPubKey To iSuccess

    // Validate the 1st (and only) signature at index 0..
    Get ComValidate Of hoJws2 iSignatureIndex To v
    If (v < 0) Begin
        // Perhaps Chilkat was not unlocked or the trial expired..
        Showln "Method call failed for some other reason."
        Get ComLastErrorText Of hoJws2 To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    If (v = 0) Begin
        Showln "Invalid signature.  The ECC key was incorrect, the JWS was invalid, or both."
        Procedure_Return
    End

    // If we get here, the signature was validated..
    Showln "Signature validated."

    // Recover the original content:
    Get ComGetPayload Of hoJws2 "utf-8" To sTemp1
    Showln sTemp1

    // Examine the protected header:
    Get Create (RefClass(cComChilkatJsonObject)) To hoJoseHeader
    If (Not(IsComObjectCreated(hoJoseHeader))) Begin
        Send CreateComObject of hoJoseHeader
    End
    Get pvComObject of hoJoseHeader to vJoseHeader
    Get ComGetProtectedH Of hoJws2 iSignatureIndex vJoseHeader To iSuccess
    Set ComEmitCompact Of hoJoseHeader To False

    Showln "Protected (JOSE) header:"
    Get ComEmit Of hoJoseHeader To sTemp1
    Showln sTemp1

    // Output:
    // 	Signature validated.
    // 	In our village, folks say God crumbles up the old moon into stars.
    // 	Protected (JOSE) header:
    // 	{
    // 	  "alg": "ES512"
    // 	}


End_Procedure