Unicode C++
Unicode C++
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 Unicode C++ Downloads
#include <CkJwsW.h>
#include <CkJsonObjectW.h>
#include <CkPrivateKeyW.h>
void ChilkatSample(void)
{
bool success = false;
CkJwsW jws;
// Protected header specifying RSASSA-PKCS1-v1_5 with SHA-256 (RS256).
CkJsonObjectW header;
header.UpdateString(L"alg",L"RS256");
success = jws.SetProtectedHeader(0,header);
if (success == false) {
wprintf(L"%s\n",jws.lastErrorText());
return;
}
bool bIncludeBom = false;
success = jws.SetPayload(L"This is the content to sign.",L"utf-8",bIncludeBom);
if (success == false) {
wprintf(L"%s\n",jws.lastErrorText());
return;
}
// 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.
CkPrivateKeyW privKey;
success = privKey.LoadPemFile(L"qa_data/signer_privkey.pem");
if (success == false) {
wprintf(L"%s\n",privKey.lastErrorText());
return;
}
success = jws.SetPrivateKey(0,privKey);
if (success == false) {
wprintf(L"%s\n",jws.lastErrorText());
return;
}
const wchar_t *jwsCompact = jws.createJws();
if (jws.get_LastMethodSuccess() == false) {
wprintf(L"%s\n",jws.lastErrorText());
return;
}
wprintf(L"%s\n",jwsCompact);
}