Sample code for 30+ languages & platforms
Delphi DLL

Create JWT using Smart Card

See more JSON Web Token (JWT) Examples

Demonstrates how to create a JWT using an RSA private key and certificate on a smart card. This is for JOSE headers with an "alg" of RS256, RS384, or RS512. When RSA is used, the private key signs (creates) the JWT, and the public key is for verification.

This example also demonstrates how to include time constraints:

  • nbf: Not Before Time
  • exp: Expiration Time
  • iat: Issue At Time

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

Chilkat Delphi DLL Downloads

Delphi DLL
uses
    Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
    Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Jwt, JsonObject, Cert;

...

procedure TForm1.Button1Click(Sender: TObject);
var
success: Boolean;
jwt: HCkJwt;
cert: HCkCert;
jose: HCkJsonObject;
claims: HCkJsonObject;
curDateTime: Integer;
token: PWideChar;

begin
success := False;

// Demonstrates how to create a JWT using an RSA private key and certificate on a smart card.

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

jwt := CkJwt_Create();
cert := CkCert_Create();

success := CkCert_LoadFromSmartcard(cert,'');
if (success = False) then
  begin
    Memo1.Lines.Add(CkCert__lastErrorText(cert));
    Exit;
  end;

// Build the JOSE header
jose := CkJsonObject_Create();
// Use RS256.  Pass the string "RS384" or "RS512" to use RSA with SHA-384 or SHA-512.
CkJsonObject_UpdateString(jose,'alg','RS256');
CkJsonObject_UpdateString(jose,'typ','JWT');
CkJsonObject_UpdateString(jose,'x5c[0]',CkCert__getEncoded(cert));

// Now build the JWT claims (also known as the payload)
claims := CkJsonObject_Create();
CkJsonObject_UpdateString(claims,'iss','http://example.org');
CkJsonObject_UpdateString(claims,'sub','John');
CkJsonObject_UpdateString(claims,'aud','http://example.com');

// Set the timestamp of when the JWT was created to now.
curDateTime := CkJwt_GenNumericDate(jwt,0);
CkJsonObject_UpdateInt(claims,'iat',curDateTime);

// Set the "not process before" timestamp to now.
CkJsonObject_UpdateInt(claims,'nbf',curDateTime);

// Set the timestamp defining an expiration time (end time) for the token
// to be now + 1 hour (3600 seconds)
CkJsonObject_UpdateInt(claims,'exp',curDateTime + 3600);

// Produce the smallest possible JWT:
CkJwt_putAutoCompact(jwt,True);

// Create the JWT token.  This is where the RSA signature is created.
token := CkJwt__createJwtCert(jwt,CkJsonObject__emit(jose),CkJsonObject__emit(claims),cert);

Memo1.Lines.Add(token);

CkJwt_Dispose(jwt);
CkCert_Dispose(cert);
CkJsonObject_Dispose(jose);
CkJsonObject_Dispose(claims);

end;