Error 1610 while importing SSHKEYGEN host keys in Cornerstone for SFTP

Error 1610 while importing SSHKEYGEN host keys in Cornerstone for SFTP

If you receive the following error when you are trying to import SSH-KEYGEN host key pairs into Cornerstone Server:
'Unable to import host key due to invalid format or bad password. Make sure the SSH key is OpenSSH format (Error 1610)',
there are two options to fix this issue. This problem most commonly occurs when you are using Linux.
Option #1, Performed on the client:
  1. Download Puttygen, available for download at http://www.putty.nl/download.html
  2. Run Puttygen. Select Conversions>Import Key.
  3. Select the Private Key and click Open.
  4. Enter the password for the Public Key and click Save Public Key.
  5. Send the public key file to the Server Administrator to import into Cornerstone Server.
Option #2, Performed on the client:

If you have created a OpenSSH key pair with the ssh-keygen command, you can use the following command to create a usable public key:

ssh-keygen -e -f >

for example:

ssh-keygen -e -f $HOME/.ssh/id_dsa > $HOME/.ssh/SSH_dsa.pub

This command will read the private key and generate a public key that can be used by Cornerstone Server.
    • Related Articles

    • SSH Host Keys unavailable with NT Authentication

      When using the Windows NT/SAM or Windows ADSI Authentication connectors in Titan FTP Server 2019 or Cornerstone MFT Server 2019, you may notice that the Public Host Key feature of SFTP/SSH is not available for use. User Authentication Settings ...
    • Error 1610 while importing SSHKEYGEN host keys in Cornerstone for SFTP

      If you receive the following error when you are trying to import SSH-KEYGEN host key pairs into Cornerstone/Titan Server: 'Unable to import host key due to invalid format or bad password. Make sure the SSH key is OpenSSH format (Error 1610)', there ...
    • Cornerstone SSH Host Keys

      Cornerstone MFT Server can use Secure File Transfer Protocol (SFTP), a Host Key Authentication method which adds Secure Shell (SSH) protection to your data transfers. This is Public Key Infrastructure (PKI), which is the use of a key pair made up of ...
    • Titan SSH Host Keys

      Titan FTP Server can use Secure File Transfer Protocol (SFTP), a Host Key Authentication method which adds Secure Shell (SSH) protection to your data transfers. This is Public Key Infrastructure (PKI), which is the use of a key pair made up of a ...
    • How To: Create SSH Keys and apply to a User

      How To: Create SSH Keys and apply to a User Question How can I create SSH keys for users and use it as authentication aside from password? Reasoning SSH Key Authentication is more secure than Password authentication. Answer Follow the below ...