Invalid SSH Key

Still need help?

The Atlassian Community is here for you.

Ask the community

Platform Notice: Cloud Only - This article only applies to Atlassian products on the cloud platform.

Problem

When adding an SSH public key to Bitbucket Cloud, the following error appears: Invalid SSH Key or Invalid SSH Key (ssh-keygen).

Cause

This error means that the data copied into the form was not able to be parsed to extract something that "looks like an SSH key". The cause of this error is that the SSH key is corrupt in some way and data pasted into the key field was modified on disk or copied incorrectly. Sometimes, this is due to line breaks being copied. Many tools will wrap the display of an SSH key. Simply highlighting and copying the key like this may copy line breaks depending on which text viewer you are using.

Diagnosis

Follow these steps to test the key on your workstation:

Diagnostic Steps:

You can test this locally by doing the following:

  1. Create your SSH key
  2. Use ssh-keygen to validate the key

    ssh-keygen -l -f temp.pub
  3. Now, copy the SSH key exactly as you had when attempting to add it to the site
  4. Paste the contents into a new file. Call it temp.pub
  5. Try to use ssh-keygen again to validate the key.

    ssh-keygen -l -f temp.pub

At this point, you should have a response indicating if either is invalid.  

Resolution

Invalid key

If the copy is invalid, see the instructions in the above issue for copying the key properly.  If both are invalid, it is possible the tool you are using to create the key is not configured properly. Try starting from the beginning of our SSH keys guide and see if starting from scratch when setting up SSH helps.

If you continue to have issues, please contact support with the output of ssh-keygen as well as your platform and what you are using to create the key.

At this moment, Bitbucket supports four encryption algorithms for user keys: Ed25519, ECDSA, RSA, and DSA.

To copy the Existing Public Key

Once you have confirmed this is the key has not been corrupted, here are the instructions to copy the ssh public key again.

Windows

  1. From your avatar in the bottom left, click Bitbucket settings.
    Bitbucket displays the Account settings page.
  2. Click SSH keys.
    The SSH Keys page displays. It shows a list of any existing keys. Then, below that, a dialog for labeling and entering a new key.
  3. Switch to your local desktop and start the PuTTYgen program.
  4. Press Load.
  5. Navigate to and open your default private key.
  6. Enter your passphrase when prompted and press OK.
    The system displays your public key.
  7. Select and copy the contents of the Public key for pasting into OpenSSH authorized_keys file field.
  8. Back in your browser, enter a Label for your new key, for example, Default public key.
  9. Paste the copied public key into the SSH Key field:
  10. Press Add key.
    The system adds the key and it appears in the SSH Keys listing.
  11. Close PuTTYgen.

OSX/Linux

  1. From Bitbucket Cloud, choose avatar > Bitbucket settings from the application menu. 
    The system displays the Account settings page.
  2. Click SSH keys.
    The SSH Keys page displays. If you have any existing keys, those appear on this page.
  3. Back in your terminal window, copy the contents of your public key file.
    For example, in Linux you can cat the contents.

    $ cat ~/.ssh/id_rsa.pub

    In Mac OS X, the following command copies the output to the clipboard:

    $ pbcopy < ~/.ssh/id_rsa.pub
  4. Back in your browser, enter a Label for your new key, for example, Default public key.

  5. Paste the copied public key into the SSH Key field:
  6. Press Add key.
    The system adds the key to your account. Bitbucket sends you an email to confirm addition of the key. 



Last modified on Feb 7, 2023

Was this helpful?

Yes
No
Provide feedback about this article
Powered by Confluence and Scroll Viewport.