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
(PureBasic) SSH HSM Public Key AuthenticationDemonstrates how to authenticate with an SSH server using public key authentication using an HSM (USB token or smartcard).
IncludeFile "CkPkcs11.pb" IncludeFile "CkJsonObject.pb" IncludeFile "CkSsh.pb" IncludeFile "CkSshKey.pb" Procedure ChilkatExample() ; This example assumes the Chilkat API to have been previously unlocked. ; See Global Unlock Sample for sample code. ; Note: Chilkat's PKCS11 implementation runs on Windows, Linux, MacOs, and other supported operating systems. pkcs11.i = CkPkcs11::ckCreate() If pkcs11.i = 0 Debug "Failed to create object." ProcedureReturn EndIf ; This would be a path to a .dylib on MacOS, or a path to a .so shared lib on Linux. CkPkcs11::setCkSharedLibPath(pkcs11, "C:/Program Files (x86)/Gemalto/IDGo 800 PKCS#11/IDPrimePKCS1164.dll") pin.s = "0000" userType.i = 1 ; Establish a PKCS11 logged-on session using the driver (.so, .dylib, or .dll) as specified in the SharedLibPath above. success.i = CkPkcs11::ckQuickSession(pkcs11,userType,pin) If success = 0 Debug CkPkcs11::ckLastErrorText(pkcs11) CkPkcs11::ckDispose(pkcs11) ProcedureReturn EndIf ; Set PKCS11 attributes to find our desired private key object. json.i = CkJsonObject::ckCreate() If json.i = 0 Debug "Failed to create object." ProcedureReturn EndIf CkJsonObject::ckUpdateString(json,"class","private_key") CkJsonObject::ckUpdateString(json,"label","MySshKey") ; Get the PKCS11 handle to the private key located on the HSM. priv_handle.i = CkPkcs11::ckFindObject(pkcs11,json) ; Get the PKCS11 handle to the corresponding public key located on the HSM. CkJsonObject::ckUpdateString(json,"class","public_key") pub_handle.i = CkPkcs11::ckFindObject(pkcs11,json) key.i = CkSshKey::ckCreate() If key.i = 0 Debug "Failed to create object." ProcedureReturn EndIf ; The key type can be "rsa" or "ec" keyType.s = "rsa" success = CkSshKey::ckUsePkcs11(key,pkcs11,priv_handle,pub_handle,keyType) If success = 0 Debug CkSshKey::ckLastErrorText(key) CkPkcs11::ckDispose(pkcs11) CkJsonObject::ckDispose(json) CkSshKey::ckDispose(key) ProcedureReturn EndIf ssh.i = CkSsh::ckCreate() If ssh.i = 0 Debug "Failed to create object." ProcedureReturn EndIf success = CkSsh::ckConnect(ssh,"example.com",22) If success <> 1 Debug CkSsh::ckLastErrorText(ssh) CkPkcs11::ckDispose(pkcs11) CkJsonObject::ckDispose(json) CkSshKey::ckDispose(key) CkSsh::ckDispose(ssh) ProcedureReturn EndIf ; Authenticate with the SSH server using the login and ; HSM private key. (The corresponding public key should've ; been installed on the SSH server beforehand.) success = CkSsh::ckAuthenticatePk(ssh,"myLogin",key) If success <> 1 Debug CkSsh::ckLastErrorText(ssh) CkPkcs11::ckDispose(pkcs11) CkJsonObject::ckDispose(json) CkSshKey::ckDispose(key) CkSsh::ckDispose(ssh) ProcedureReturn EndIf Debug "Public-Key Authentication Successful!" CkPkcs11::ckDispose(pkcs11) CkJsonObject::ckDispose(json) CkSshKey::ckDispose(key) CkSsh::ckDispose(ssh) ProcedureReturn EndProcedure |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.