SQL Server
SQL Server
Create JWT Using Ed25519 Private Key (EdDSA)
See more JSON Web Token (JWT) Examples
Demonstrates how to create a JWT using an Ed25519 private key. If the private key is Ed25519, which is an EdDSA algorithm, the JOSE header's "alg" member should be set to "EdDSA".Note: This example requires Chilkat v9.5.0.95 or greater.
Chilkat SQL Server Downloads
-- Important: See this note about string length limitations for strings returned by sp_OAMethod calls.
--
CREATE PROCEDURE ChilkatSample
AS
BEGIN
DECLARE @hr int
-- Important: Do not use nvarchar(max). See the warning about using nvarchar(max).
DECLARE @sTmp0 nvarchar(4000)
DECLARE @sTmp1 nvarchar(4000)
DECLARE @success int
SELECT @success = 0
-- This example requires the Chilkat API to have been previously unlocked.
-- See Global Unlock Sample for sample code.
-- Demonstrates how to create a JWT using an Ed25519 private key.
DECLARE @privKey int
EXEC @hr = sp_OACreate 'Chilkat.PrivateKey', @privKey OUT
IF @hr <> 0
BEGIN
PRINT 'Failed to create ActiveX component'
RETURN
END
-- Load an Ed25519 (EdDSA) private key from a PEM file.
EXEC sp_OAMethod @privKey, 'LoadPemFile', @success OUT, 'qa_data/eddsa/ed25519.pem'
IF @success <> 1
BEGIN
EXEC sp_OAGetProperty @privKey, 'LastErrorText', @sTmp0 OUT
PRINT @sTmp0
EXEC @hr = sp_OADestroy @privKey
RETURN
END
DECLARE @jwt int
EXEC @hr = sp_OACreate 'Chilkat.Jwt', @jwt OUT
-- Build the JOSE header
DECLARE @jose int
EXEC @hr = sp_OACreate 'Chilkat.JsonObject', @jose OUT
-- -----------------------------------------------------------------
-- Note: This example requires Chilkat v9.5.0.95 or greater.
-- -----------------------------------------------------------------
EXEC sp_OAMethod @jose, 'AppendString', @success OUT, 'alg', 'EdDSA'
EXEC sp_OAMethod @jose, 'AppendString', @success OUT, 'typ', 'JWT'
-- Now build the JWT claims (also known as the payload)
DECLARE @claims int
EXEC @hr = sp_OACreate 'Chilkat.JsonObject', @claims OUT
EXEC sp_OAMethod @claims, 'AppendString', @success OUT, 'iss', 'http://example.org'
EXEC sp_OAMethod @claims, 'AppendString', @success OUT, 'sub', 'John'
EXEC sp_OAMethod @claims, 'AppendString', @success OUT, 'aud', 'http://example.com'
-- (optional) Set the timestamp of when the JWT was created to now.
DECLARE @curDateTime int
EXEC sp_OAMethod @jwt, 'GenNumericDate', @curDateTime OUT, 0
EXEC sp_OAMethod @claims, 'AddIntAt', @success OUT, -1, 'iat', @curDateTime
-- (optional) Set the "not process before" timestamp to now.
EXEC sp_OAMethod @claims, 'AddIntAt', @success OUT, -1, 'nbf', @curDateTime
-- (optional) Set the timestamp defining an expiration time (end time) for the token
-- to be now + 1 hour (3600 seconds)
EXEC sp_OAMethod @claims, 'AddIntAt', @success OUT, -1, 'exp', @curDateTime + 3600
-- Produce the smallest possible JWT:
EXEC sp_OASetProperty @jwt, 'AutoCompact', 1
-- Create the JWT token.
DECLARE @token nvarchar(4000)
EXEC sp_OAMethod @jose, 'Emit', @sTmp0 OUT
EXEC sp_OAMethod @claims, 'Emit', @sTmp1 OUT
EXEC sp_OAMethod @jwt, 'CreateJwtPk', @token OUT, @sTmp0, @sTmp1, @privKey
PRINT @token
-- Example output:
-- eyJhbGciOiJFZERTQSIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJodHRwOi8vZXhhbXBsZS5vcmciLCJzdWIiOiJKb2huIiwiYXVkIjoiaHR0cDovL2V4YW1wbGUuY29tIiwiaWF0IjoxNjg3OTcwNjgyLCJuYmYiOjE2ODc5NzA2ODIsImV4cCI6MTY4Nzk3NDI4Mn0.eyfrDJfuWJSJVJPfAUYb_p_c-LF_YULHGRaZx82MLLjMLCCFEEGckp8icuayf5bLW9ah20LzYYt0JgOBIB0RDg
EXEC @hr = sp_OADestroy @privKey
EXEC @hr = sp_OADestroy @jwt
EXEC @hr = sp_OADestroy @jose
EXEC @hr = sp_OADestroy @claims
END
GO