Retrieving a List of EFT Server's PGP Keys (AvailablePGPKeys)

icon_info.gif

Available in EFT Server 6.1 and later.

The ICIServer::AvailablePGPKeys read-only property allows you to retrieve a list of EFT Server’s PGP Keys. Its value is a variant containing the array of ICIPGPKeyInfo interfaces.

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

Example (VBScript):

For Each key In Server.AvailablePGPKeys

MsgBox key.Name & " key is available"

Next