Chilkat Examples

ChilkatHOME.NET Core C#Android™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi ActiveXDelphi DLLGoJavaLianjaMono C#Node.jsObjective-CPHP ActiveXPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

Swift 3,4,5... Examples

Web API Categories

ASN.1
AWS KMS
AWS Misc
Amazon EC2
Amazon Glacier
Amazon S3
Amazon S3 (new)
Amazon SES
Amazon SNS
Amazon SQS
Async
Azure Cloud Storage
Azure Key Vault
Azure Service Bus
Azure Table Service
Base64
Bounced Email
Box
CAdES
CSR
CSV
Certificates
Code Signing
Compression
DKIM / DomainKey
DNS
DSA
Diffie-Hellman
Digital Signatures
Dropbox
Dynamics CRM
EBICS
ECC
Ed25519
Email Object
Encryption
FTP
FileAccess
Firebase
GMail REST API
GMail SMTP/IMAP/POP
Geolocation
Google APIs
Google Calendar
Google Cloud SQL
Google Cloud Storage
Google Drive
Google Photos
Google Sheets
Google Tasks
Gzip
HTML-to-XML/Text
HTTP

HTTP Misc
IMAP
JSON
JSON Web Encryption (JWE)
JSON Web Signatures (JWS)
JSON Web Token (JWT)
Java KeyStore (JKS)
MHT / HTML Email
MIME
MS Storage Providers
Microsoft Graph
Misc
NTLM
OAuth1
OAuth2
OIDC
Office365
OneDrive
OpenSSL
Outlook
Outlook Calendar
Outlook Contact
PDF Signatures
PEM
PFX/P12
PKCS11
POP3
PRNG
REST
REST Misc
RSA
SCP
SCard
SFTP
SMTP
SSH
SSH Key
SSH Tunnel
ScMinidriver
SharePoint
SharePoint Online
Signing in the Cloud
Socket/SSL/TLS
Spider
Stream
Tar Archive
ULID/UUID
Upload
WebSocket
XAdES
XML
XML Digital Signatures
XMP
Zip
curl

 

 

 

(Swift 3,4,5...) Extract PKCS7 Signature Digest

Demonstrates how to extract a signature digest from a PKCS7 signature.

Chilkat Downloads for the Swift Programming Language

MAC OS X (Cocoa) Objective-C/Swift Libs

iOS Objective-C/Swift Libs

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.