Lianja
Lianja
Sign a JWS with a Private Key
See more JSON Web Signatures (JWS) Examples
Demonstrates Jws.SetPrivateKey, which sets the private key used to create a signature. The example uses RS256 (RSASSA-PKCS1-v1_5 with SHA-256).
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. Public-key JWS signs with a private key so that anyone holding the corresponding public key can verify the signature.
Chilkat Lianja Downloads
llSuccess = .F.
loJws = createobject("CkJws")
// Protected header specifying RSASSA-PKCS1-v1_5 with SHA-256 (RS256).
loHeader = createobject("CkJsonObject")
loHeader.UpdateString("alg","RS256")
llSuccess = loJws.SetProtectedHeader(0,loHeader)
if (llSuccess = .F.) then
? loJws.LastErrorText
release loJws
release loHeader
return
endif
llBIncludeBom = .F.
llSuccess = loJws.SetPayload("This is the content to sign.","utf-8",llBIncludeBom)
if (llSuccess = .F.) then
? loJws.LastErrorText
release loJws
release loHeader
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 signer's private key and set it for signature 0.
loPrivKey = createobject("CkPrivateKey")
llSuccess = loPrivKey.LoadPemFile("qa_data/signer_privkey.pem")
if (llSuccess = .F.) then
? loPrivKey.LastErrorText
release loJws
release loHeader
release loPrivKey
return
endif
llSuccess = loJws.SetPrivateKey(0,loPrivKey)
if (llSuccess = .F.) then
? loJws.LastErrorText
release loJws
release loHeader
release loPrivKey
return
endif
lcJwsCompact = loJws.CreateJws()
if (loJws.LastMethodSuccess = .F.) then
? loJws.LastErrorText
release loJws
release loHeader
release loPrivKey
return
endif
? lcJwsCompact
release loJws
release loHeader
release loPrivKey