Sample code for 30+ languages & platforms
PowerBuilder

Get ECC Public Key in JWK Format (JSON Web Key)

See more ECC Examples

Demonstrates how to get an ECC public key in JWK (JSON Web Key) format.

Note: This example requires Chilkat v9.5.0.66 or later.

Chilkat PowerBuilder Downloads

PowerBuilder
integer li_rc
integer li_Success
oleobject loo_SbPem
oleobject loo_PubKey
string ls_Jwk
oleobject loo_Json

li_Success = 0

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

// Load a PEM file into memory.
loo_SbPem = create oleobject
li_rc = loo_SbPem.ConnectToNewObject("Chilkat.StringBuilder")
if li_rc < 0 then
    destroy loo_SbPem
    MessageBox("Error","Connecting to COM object failed")
    return
end if
li_Success = loo_SbPem.LoadFile("qa_data/pem/ecc_public.pem","utf-8")
if li_Success <> 1 then
    Write-Debug "Failed to load PEM file."
    destroy loo_SbPem
    return
end if

// Load the PEM into a public key object.
loo_PubKey = create oleobject
li_rc = loo_PubKey.ConnectToNewObject("Chilkat.PublicKey")

li_Success = loo_PubKey.LoadFromString(loo_SbPem.GetAsString())
if li_Success <> 1 then
    Write-Debug loo_PubKey.LastErrorText
    destroy loo_SbPem
    destroy loo_PubKey
    return
end if

// Get the public key in JWK format:
ls_Jwk = loo_PubKey.GetJwk()

// The GetJwk method will return the JWK in the most compact JSON format possible,
// as a single line with no extra whitespace.  To get a more human-readable JWK (for this example),
// load into a Chilkat JSON object and emit non-compact:

loo_Json = create oleobject
li_rc = loo_Json.ConnectToNewObject("Chilkat.JsonObject")

loo_Json.Load(ls_Jwk)
loo_Json.EmitCompact = 0
Write-Debug "ECC Public Key in JWK format:"
Write-Debug loo_Json.Emit()

// Sample output:
// { 
//   "kty": "EC",
//   "crv": "P-256",
//   "x": "oBUyo8CQAFPeYPvv78ylh5MwFZjTCLQeb042TjiMJxE",
//   "y": "vvQyxZkUjJQUPU_0bCy3Pj5qQdfu8jwEfqEeYGZ95CU"
// }
// 
// Additional information can be added like this:
loo_Json.AppendString("use","enc")
loo_Json.AppendString("kid","123ABC")

// Now examine the JSON:
Write-Debug loo_Json.Emit()

// { 
//   "kty": "EC",
//   "crv": "P-256",
//   "x": "oBUyo8CQAFPeYPvv78ylh5MwFZjTCLQeb042TjiMJxE",
//   "y": "vvQyxZkUjJQUPU_0bCy3Pj5qQdfu8jwEfqEeYGZ95CU",
//   "use": "enc",
//   "kid": "123ABC"
// }


destroy loo_SbPem
destroy loo_PubKey
destroy loo_Json