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 2) Extract PKCS7 Signature DigestDemonstrates how to extract a signature digest from a PKCS7 signature.
func chilkatTest() { // This example requires the Chilkat Crypt API to have been previously unlocked. // See Unlock Chilkat Crypt for sample code. let crypt = CkoCrypt2() var p7mFile: String? = "qa_data/p7m/test.pdf.p7m" var outPath: String? = "qa_output/test.pdf" // First let's see if this .p7m signature can be verified, and the original file extracted. var verified: Bool = crypt.VerifyP7M(p7mFile, destPath: outPath) if verified != true { print("\(crypt.LastErrorText)") return } // How many signers? // (The NumSignerCerts property is set whenever a signature is verified.) print("Num Signers: \(crypt.NumSignerCerts.intValue)") // Load the .p7m into memory... let pkcs7Data = CkoBinData() pkcs7Data.LoadFile(p7mFile) // Check to see if this .p7m contains the binary bytes, or if it's // already base64 encoded. Get the 1st two bytes. If the first two // bytes are the us-ascii values "MI", then we have base64. let sbBase64 = CkoStringBuilder() var hexStr: String? = pkcs7Data.GetEncodedChunk(0, numBytes: 2, encoding: "hex") sbBase64.Append(hexStr) var bHaveBase64: Bool = false if sbBase64.ContentsEqual("4D49", caseSensitive: true) == true { bHaveBase64 = true sbBase64.Clear() sbBase64.AppendBd(pkcs7Data, charset: "utf-8", offset: 0, numBytes: 0) } // Get each signer's signature digest. crypt.EncodingMode = "base64" var i: Int = 0 var digest: String? while i < crypt.NumSignerCerts.intValue { if bHaveBase64 { digest = crypt.Pkcs7ExtractDigest(i, pkcs7: sbBase64.GetAsString()) } else { digest = crypt.Pkcs7ExtractDigest(i, pkcs7: pkcs7Data.GetEncoded("base64")) } if crypt.LastMethodSuccess != true { print("\(crypt.LastErrorText)") return } print("Signer \(i + 1) digest = \(digest!)") i = i + 1 } } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.