Retrieving List of Available SSH Keys (AvailableSSHKeys)

Available in EFT Server 6.1 and later.

Use the ICIServer::AvailableSSHKeys read-only property to retrieve a list of SSH public keys available for EFT Server. Its value is a variant containing the array of ICISSKKeyInfo interfaces.

HRESULT AvailableSSHKeys([out, retval] VARIANT* pVal);

Example (VBScript):

For Each key In Server.AvailableSSHKeys

MsgBox "Key " & key.Name & "(" & key.Fingerprint & ") is available"

Next