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...) Verify SSL Server CertificateDemonstrates how to connect to an SSL server and verify its SSL certificate.
func chilkatTest() { // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. let socket = CkoSocket()! var ssl: Bool = true var maxWaitMillisec: Int = 20000 // The SSL server hostname may be an IP address, a domain name, // or "localhost". var sslServerHost: String? sslServerHost = "www.paypal.com" var sslServerPort: Int = 443 // Connect to the SSL server: var success: Bool = socket.connect(sslServerHost, port: sslServerPort, ssl: ssl, maxWaitMs: maxWaitMillisec) if success != true { print("\(socket.lastErrorText!)") return } var cert: CkoCert? var bExpired: Bool var bRevoked: Bool var bSignatureVerified: Bool var bTrustedRoot: Bool cert = socket.getSslServerCert() if socket.lastMethodSuccess != false { print("Server Certificate:") print("Distinguished Name: \(cert!.subjectDN!)") print("Common Name: \(cert!.subjectCN!)") print("Issuer Distinguished Name: \(cert!.issuerDN!)") print("Issuer Common Name: \(cert!.issuerCN!)") bExpired = cert!.expired bRevoked = cert!.revoked bSignatureVerified = cert!.signatureVerified bTrustedRoot = cert!.trustedRoot print("Expired: \(bExpired)") print("Revoked: \(bRevoked)") print("Signature Verified: \(bSignatureVerified)") print("Trusted Root: \(bTrustedRoot)") cert = nil } // Close the connection with the server // Wait a max of 20 seconds (20000 millsec) success = socket.close(20000) } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.