Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Unicode C) JWE Using Flattened JWE JSON SerializationThis example duplicates the example A.5 in RFC 7516 for JSON Web Encryption (JWE). This example demonstrates using the flattened JWE JSON Serialization syntax. This example demonstrates the capability for encrypting the plaintext to a single recipient in a flattened JSON structure. Note: This example requires Chilkat v9.5.0.66 or greater.
#include <C_CkJweW.h> #include <C_CkJsonObjectW.h> #include <C_CkStringBuilderW.h> void ChilkatSample(void) { BOOL success; const wchar_t *plaintext; HCkJweW jwe; HCkJsonObjectW jweProtHdr; HCkJsonObjectW jweRecipientHdr; int recipientIndex; HCkJsonObjectW jweUnprotHdr; const wchar_t *aesWrappingKey; const wchar_t *strJwe; HCkJsonObjectW jsonTemp; HCkJweW jwe2; const wchar_t *originalPlaintext; HCkStringBuilderW sbJwe; // This requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. // Note: This example requires Chilkat v9.5.0.66 or greater. plaintext = L"Live long and prosper."; jwe = CkJweW_Create(); // First build the JWE Protected Header: {"enc":"A128CBC-HS256"} jweProtHdr = CkJsonObjectW_Create(); CkJsonObjectW_AppendString(jweProtHdr,L"enc",L"A128CBC-HS256"); CkJweW_SetProtectedHeader(jwe,jweProtHdr); // We have a single recipient that uses AES Key Wrap to encrypt the CEK. // // {"alg":"A128KW","kid":"7"} jweRecipientHdr = CkJsonObjectW_Create(); CkJsonObjectW_AppendString(jweRecipientHdr,L"alg",L"A128KW"); CkJsonObjectW_AppendString(jweRecipientHdr,L"kid",L"7"); recipientIndex = 0; CkJweW_SetRecipientHeader(jwe,recipientIndex,jweRecipientHdr); // Set the Shared Unprotected Header: {"jku":"https://server.example.com/keys.jwks"} jweUnprotHdr = CkJsonObjectW_Create(); CkJsonObjectW_AppendString(jweUnprotHdr,L"jku",L"https://server.example.com/keys.jwks"); CkJweW_SetUnprotectedHeader(jwe,jweUnprotHdr); // Set the AES key wrapping key. aesWrappingKey = L"GawgguFyGrWKav7AX4VKUg"; recipientIndex = 0; CkJweW_SetWrappingKey(jwe,recipientIndex,aesWrappingKey,L"base64url"); // OK.. everything has been specified. // Now encrypt. // Indicate that we prefer the flattened JSON serialization. CkJweW_putPreferFlattened(jwe,TRUE); strJwe = CkJweW_encrypt(jwe,plaintext,L"utf-8"); if (CkJweW_getLastMethodSuccess(jwe) != TRUE) { wprintf(L"%s\n",CkJweW_lastErrorText(jwe)); CkJweW_Dispose(jwe); CkJsonObjectW_Dispose(jweProtHdr); CkJsonObjectW_Dispose(jweRecipientHdr); CkJsonObjectW_Dispose(jweUnprotHdr); return; } // The JWE is produced in the most compact form possible (a single line). // Let's load it into a JSON object and examine in a non-compact pretty-printed format: jsonTemp = CkJsonObjectW_Create(); CkJsonObjectW_Load(jsonTemp,strJwe); CkJsonObjectW_putEmitCompact(jsonTemp,FALSE); wprintf(L"%s\n",CkJsonObjectW_emit(jsonTemp)); // The JWE looks like this: // (Note: Because of random values used in the encryption process, your encrypted results will be different.) // { // "protected": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2In0", // "unprotected": { // "jku": "https://server.example.com/keys.jwks" // }, // "header": { // "alg": "A128KW", // "kid": "7" // }, // "encrypted_key": "FW7z9VxOvnF2ClicvUT4HTeqcdyh90C6qytfEFJsOb77FOwTfYrc3w", // "iv": "O6Ly5-eML3zTs-_fNX3D5Q", // "ciphertext": "Q8NLmeac9JhLh0CQPuG_7D9wVDb55eToCh0g5-FQ4M0", // "tag": "slzlo6-J9C7wSDF4dh_kBg" // } // Now decrypt...................................... // First, load the JWE.. jwe2 = CkJweW_Create(); success = CkJweW_LoadJwe(jwe2,strJwe); if (success != TRUE) { wprintf(L"%s\n",CkJweW_lastErrorText(jwe2)); CkJweW_Dispose(jwe); CkJsonObjectW_Dispose(jweProtHdr); CkJsonObjectW_Dispose(jweRecipientHdr); CkJsonObjectW_Dispose(jweUnprotHdr); CkJsonObjectW_Dispose(jsonTemp); CkJweW_Dispose(jwe2); return; } // Set the AES wrap key.. recipientIndex = 0; CkJweW_SetWrappingKey(jwe2,recipientIndex,aesWrappingKey,L"base64url"); // Decrypt originalPlaintext = CkJweW_decrypt(jwe2,recipientIndex,L"utf-8"); if (CkJweW_getLastMethodSuccess(jwe2) != TRUE) { wprintf(L"%s\n",CkJweW_lastErrorText(jwe2)); CkJweW_Dispose(jwe); CkJsonObjectW_Dispose(jweProtHdr); CkJsonObjectW_Dispose(jweRecipientHdr); CkJsonObjectW_Dispose(jweUnprotHdr); CkJsonObjectW_Dispose(jsonTemp); CkJweW_Dispose(jwe2); return; } wprintf(L"original text decrypted with AES key wrap key: \n"); wprintf(L"%s\n",originalPlaintext); // --------------------------------------------------------------------------------- // It should also be possible to decrypt the flattened JWE as shown in RFC 7516, Appendix A.5 // because it was produced using the same key. sbJwe = CkStringBuilderW_Create(); CkStringBuilderW_Append(sbJwe,L"{"); CkStringBuilderW_Append(sbJwe,L"\"protected\":"); CkStringBuilderW_Append(sbJwe,L"\"eyJlbmMiOiJBMTI4Q0JDLUhTMjU2In0\","); CkStringBuilderW_Append(sbJwe,L"\"unprotected\":"); CkStringBuilderW_Append(sbJwe,L"{\"jku\":\"https://server.example.com/keys.jwks\"},"); CkStringBuilderW_Append(sbJwe,L"\"header\":"); CkStringBuilderW_Append(sbJwe,L"{\"alg\":\"A128KW\",\"kid\":\"7\"},"); CkStringBuilderW_Append(sbJwe,L"\"encrypted_key\":"); CkStringBuilderW_Append(sbJwe,L"\"6KB707dM9YTIgHtLvtgWQ8mKwboJW3of9locizkDTHzBC2IlrT1oOQ\","); CkStringBuilderW_Append(sbJwe,L"\"iv\":"); CkStringBuilderW_Append(sbJwe,L"\"AxY8DCtDaGlsbGljb3RoZQ\","); CkStringBuilderW_Append(sbJwe,L"\"ciphertext\":"); CkStringBuilderW_Append(sbJwe,L"\"KDlTtXchhZTGufMYmOYGS4HffxPSUrfmqCHXaI9wOGY\","); CkStringBuilderW_Append(sbJwe,L"\"tag\":"); CkStringBuilderW_Append(sbJwe,L"\"Mz-VPPyU4RlcuYv1IwIvzw\""); CkStringBuilderW_Append(sbJwe,L"}"); success = CkJweW_LoadJweSb(jwe2,sbJwe); if (success != TRUE) { wprintf(L"%s\n",CkJweW_lastErrorText(jwe2)); CkJweW_Dispose(jwe); CkJsonObjectW_Dispose(jweProtHdr); CkJsonObjectW_Dispose(jweRecipientHdr); CkJsonObjectW_Dispose(jweUnprotHdr); CkJsonObjectW_Dispose(jsonTemp); CkJweW_Dispose(jwe2); CkStringBuilderW_Dispose(sbJwe); return; } recipientIndex = 0; CkJweW_SetWrappingKey(jwe2,recipientIndex,aesWrappingKey,L"base64url"); originalPlaintext = CkJweW_decrypt(jwe2,recipientIndex,L"utf-8"); if (CkJweW_getLastMethodSuccess(jwe2) != TRUE) { wprintf(L"%s\n",CkJweW_lastErrorText(jwe2)); CkJweW_Dispose(jwe); CkJsonObjectW_Dispose(jweProtHdr); CkJsonObjectW_Dispose(jweRecipientHdr); CkJsonObjectW_Dispose(jweUnprotHdr); CkJsonObjectW_Dispose(jsonTemp); CkJweW_Dispose(jwe2); CkStringBuilderW_Dispose(sbJwe); return; } wprintf(L"original text decrypted from published flattened JWE: \n"); wprintf(L"%s\n",originalPlaintext); // The output: // original text decrypted with AES key wrap key: // Live long and prosper. // original text decrypted from published flattened JWE: // Live long and prosper. CkJweW_Dispose(jwe); CkJsonObjectW_Dispose(jweProtHdr); CkJsonObjectW_Dispose(jweRecipientHdr); CkJsonObjectW_Dispose(jweUnprotHdr); CkJsonObjectW_Dispose(jsonTemp); CkJweW_Dispose(jwe2); CkStringBuilderW_Dispose(sbJwe); } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.