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
(Swift 3,4,5...) JWE with DEFLATE CompressionDemonstrates how to DEFLATE ("zip") compress the JWE payload prior to encryption. Note: This example requires Chilkat v9.5.0.66 or greater.
func chilkatTest() { // 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. var success: Bool // Create some plaintext to be encrypted. // This example will demonstrate with and without DEFLATE (zip) compression. let sbPlainText = CkoStringBuilder()! var bCrLf: Bool = true var line: String? = "Live long and prosper." sbPlainText.appendLine(line, crlf: bCrLf) sbPlainText.appendLine(line, crlf: bCrLf) sbPlainText.appendLine(line, crlf: bCrLf) sbPlainText.appendLine(line, crlf: bCrLf) // The text to be encrypted: print("\(sbPlainText.getAsString()!)") let jwe = CkoJwe()! // Build the JWE Protected Header: {"alg":"A128KW","enc":"A128CBC-HS256","zip":"DEF"} // The "zip":"DEF" parameter indicates that the plaintext payload should // be compressed prior to encryption. let jweProtHdr = CkoJsonObject()! jweProtHdr.append("alg", value: "A128KW") jweProtHdr.append("enc", value: "A128CBC-HS256") jweProtHdr.append("zip", value: "DEF") jwe.setProtectedHeader(jweProtHdr) // Set the AES key wrap key: var aesWrappingKey: String? = "GawgguFyGrWKav7AX4VKUg" jwe.setWrappingKey(0, encodedKey: aesWrappingKey, encoding: "base64url") // Encrypt and return the JWE in sbJweCompressed: let sbJweCompressed = CkoStringBuilder()! success = jwe.encryptSb(sbPlainText, charset: "utf-8", jweSb: sbJweCompressed) if success != true { print("\(jwe.lastErrorText!)") return } // Show the compressed JWE: print("\(sbJweCompressed.getAsString()!)") print("size of compressed JWE: \(sbJweCompressed.length.intValue)") // Now create a JWE without compression. jweProtHdr.delete("zip") // Make sure to update the shared protected header: jwe.setProtectedHeader(jweProtHdr) let sbJweUncompressed = CkoStringBuilder()! success = jwe.encryptSb(sbPlainText, charset: "utf-8", jweSb: sbJweUncompressed) if success != true { print("\(jwe.lastErrorText!)") return } // Show the uncompressed JWE: print("\(sbJweUncompressed.getAsString()!)") print("size of uncompressed JWE: \(sbJweUncompressed.length.intValue)") // Decrypting is the same whether compression is used or not. // The "zip" header in the JWE indicates that the payload should be // automatically decompressed (inflated) after decrypting. let jwe2 = CkoJwe()! success = jwe2.loadSb(sbJweCompressed) if success != true { print("\(jwe2.lastErrorText!)") return } // Set the AES wrap key. jwe2.setWrappingKey(0, encodedKey: aesWrappingKey, encoding: "base64url") // Decrypt (also automatically decompresses). let sbOriginalText = CkoStringBuilder()! success = jwe2.decryptSb(0, charset: "utf-8", contentSb: sbOriginalText) if success != true { print("\(jwe2.lastErrorText!)") return } print("original text from compressed JWE: ") print("\(sbOriginalText.getAsString()!)") // ----------------------------------------------------------- // Do the same with the uncompressed JWE success = jwe2.loadSb(sbJweUncompressed) if success != true { print("\(jwe2.lastErrorText!)") return } // Set the AES wrap key. jwe2.setWrappingKey(0, encodedKey: aesWrappingKey, encoding: "base64url") // Decrypt. sbOriginalText.clear() success = jwe2.decryptSb(0, charset: "utf-8", contentSb: sbOriginalText) if success != true { print("\(jwe2.lastErrorText!)") return } print("original text from uncompressed JWE: ") print("\(sbOriginalText.getAsString()!)") // ------------------------------------------------ // The output of this example is: // (Note: Your output data will be different because the content encryption key is randomly generated.) // eyJhbGciOiJBMTI4S1ciLCJlbmMiOiJBMTI4Q0JDLUhTMjU2IiwiemlwIjoiREVGIn0.xuW-pEAIdEUFnk10m8ocursvktO8Of9ByCCAt6LgKkkOtCWCUn1kQw.zpGj-9WVni3cQxyOuZbcGA.0hzP1myua3oYpUHwCIY_3edBUREbUpLaX6wYuJduOdI.Ppc6aEO3y3B8BJ1FKMPjlA // size of compressed JWE: 212 // eyJhbGciOiJBMTI4S1ciLCJlbmMiOiJBMTI4Q0JDLUhTMjU2In0.N4KeyC7nnSFkieJOyE24_zKeuV_m7v5UKoJb1TgV4Yc_r2RzUPNvyA.6AEdyXSCKx-iMmUJyypSLg.QpixfyrwhGpmwUDp623viik4smPav7vwPLiC2r-V-jwnSfEH3mxWu6DbrIz3mixaqATwynmEBzVPxvS9jTXpSAGCnniib4_0WoPl3r_wF5tlsKOEe--jpNso-DKd1Tp8jJxj3JkFWt3IRnUUKGj17g.sBfDwFc5fzpaI-UW8-SW4g // size of uncompressed JWE: 303 // original text from compressed JWE: // Live long and prosper. // Live long and prosper. // Live long and prosper. // Live long and prosper. // // original text from uncompressed JWE: // Live long and prosper. // Live long and prosper. // Live long and prosper. // Live long and prosper. // } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.