将PEM密钥转换为SSH-RSA格式


142

我有der格式的证书,使用此命令从中生成一个公共密钥:

openssl x509 -inform der -in ejbcacert.cer -noout -pubkey > pub1key.pub

结果如下:

-----BEGIN PUBLIC KEY-----
MIGfMA0GCSqGSIb3DQEBAQUAA4GNADCBiQKBgQC7vbqajDw4o6gJy8UtmIbkcpnk
O3Kwc4qsEnSZp/TR+fQi62F79RHWmwKOtFmwteURgLbj7D/WGuNLGOfa/2vse3G2
eHnHl5CB8ruRX9fBl/KgwCVr2JaEuUm66bBQeP5XeBotdR4cvX38uPYivCDdPjJ1
QWPdspTBKcxeFbccDwIDAQAB
-----END PUBLIC KEY-----

我如何获得这样的公钥?是从证书还是从这个公钥?

ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAgQC7vbqajDw4o6gJy8UtmIbkcpnkO3Kwc4qsEnSZp/TR+fQi62F79RHWmwKOtFmwteURgLbj7D/WGuNLGOfa/2vse3G2eHnHl5CB8ruRX9fBl/KgwCVr2JaEuUm66bBQeP5XeBotdR4cvX38uPYivCDdPjJ1QWPdspTBKcxeFbccDw==

这是通过以下命令获得的:

ssh-keygen -y -f private_key1.pem > public_key1.pub

14
您在“这是通过此命令获得的”中发布的方式对我来说比下面的任何答案都更好。
Yoav Shapira 2012年

7
@YoavShipra。是的,但是整个问题是他只想使用公共密钥进行转换。也许他没有私钥,只有公钥,并且想要从PEM格式转换为ssh-rsa格式。
deltamind106 2015年

10
给定来自AWS的.pem,您上面给出的命令ssh-keygen -y -f private_key1.pem > public_key1.pub对我来说非常有用。
Kzqai 2015年

1
所有错误的答案。这是正确的方法: ssh-keygen -i -m PKCS8 -f public-key.pem
Boeboe

3
情人在情人眼中。我们需要注意的是,pem密钥可以包含公钥或私钥,或两者都包含;是否加密;加上各种格式。另外/ 的option含义-m也不同。所以,我的朋友们,请确保您知道自己想要什么和拥有什么。:-)-i-e
ryenus

Answers:


129

无需编译内容。您可以使用ssh-keygen

ssh-keygen -f pub1key.pub -i

将从opensl格式读取公钥,pub1key.pub并以OpenSSH格式输出。

注意:在某些情况下,您将需要指定输入格式:

ssh-keygen -f pub1key.pub -i -mPKCS8

来自ssh-keygen文档(来自man ssh-keygen):

-m key_format为-i(导入)或-e(导出)转换选项指定密钥格式。支持的密钥格式为:“ RFC4716”(RFC 4716 / SSH2公钥或私钥),“ PKCS8”(PEM PKCS8公钥)或“ PEM”(PEM公钥)。默认转换格式为“ RFC4716”。


3
ssh-keygen:非法选项– m
mbonnin 2012年

1
问题是相反的。
2015年

4
对于将来的网络搜索者而言,如果这对您不起作用,则原始问题中的评论对我有用。
kristopolous

17
就我而言,这-m PKCS8是必要的
Ian Hunter

1
$ ssh-keygen -f mykey.pub -i key_from_blob: invalid format decode blob failed.
巴斯蒂安·福伊特

53

无需脚本或其他“招数”:opensslssh-keygen足够。我假设密钥没有密码(这很不好)。

生成RSA对

以下所有方法均以相同格式提供RSA密钥对

  1. 与openssl(man genrsa

    openssl genrsa -out dummy-genrsa.pem 2048
    

    在OpenSSL v1.0.1中genrsa 被取代genpkey因此这是执行此操作的新方法(man genpkey):

    openssl genpkey -algorithm RSA -out dummy-genpkey.pem -pkeyopt rsa_keygen_bits:2048
    
  2. 使用ssh-keygen

    ssh-keygen -t rsa -b 2048 -f dummy-ssh-keygen.pem -N '' -C "Test Key"
    

将DER转换为PEM

如果您具有DER格式的RSA密钥对,则可能需要将其转换为PEM以允许以下格式转换:

代:

openssl genpkey -algorithm RSA -out genpkey-dummy.cer -outform DER -pkeyopt rsa_keygen_bits:2048

转换:

openssl rsa -inform DER -outform PEM -in genpkey-dummy.cer -out dummy-der2pem.pem

从PEM格式的RSA对中提取公钥

  1. PEM格式:

    openssl rsa -in dummy-xxx.pem -pubout
    
  2. OpenSSH v2格式,请参见

    ssh-keygen -y -f dummy-xxx.pem
    

笔记

操作系统和软件版本:

[user@test1 ~]# cat /etc/redhat-release ; uname -a ; openssl version
CentOS release 6.5 (Final)
Linux test1.example.local 2.6.32-431.el6.x86_64 #1 SMP Fri Nov 22 03:15:09 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux
OpenSSL 1.0.1e-fips 11 Feb 2013

参考文献:


//,这是否实际生成ssh-rsa格式的密钥?好参考,顺便说一句。
内森·巴桑尼斯

@NathanBasanese,是的(请参阅“从PEM格式的RSA对中提取公钥”,第2点):一旦拥有pem格式的证书:ssh-keygen -y -f dummy-xxx.pem生成ssh-rsa AAAA[...]==适合ssh authorized_keys文件的文件。
托马斯

内容丰富的文章...但是我认为它并不能像上面的简短文章一样回答问题。
食人魔代码

23

为了回答我自己的问题,在openssl邮件列表上发布后得到以下信息:

这是从OpenSSL公钥转换为OpenSSH公钥的C代码。您可以从此链接中获取代码并自己编译:

static unsigned char pSshHeader[11] = { 0x00, 0x00, 0x00, 0x07, 0x73, 0x73, 0x68, 0x2D, 0x72, 0x73, 0x61};

static int SshEncodeBuffer(unsigned char *pEncoding, int bufferLen, unsigned char* pBuffer)
{
   int adjustedLen = bufferLen, index;
   if (*pBuffer & 0x80)
   {
      adjustedLen++;
      pEncoding[4] = 0;
      index = 5;
   }
   else
   {
      index = 4;
   }
   pEncoding[0] = (unsigned char) (adjustedLen >> 24);
   pEncoding[1] = (unsigned char) (adjustedLen >> 16);
   pEncoding[2] = (unsigned char) (adjustedLen >>  8);
   pEncoding[3] = (unsigned char) (adjustedLen      );
   memcpy(&pEncoding[index], pBuffer, bufferLen);
   return index + bufferLen;
}

int main(int argc, char**  argv)
{
   int iRet = 0;
   int nLen = 0, eLen = 0;
   int encodingLength = 0;
   int index = 0;
   unsigned char *nBytes = NULL, *eBytes = NULL;
   unsigned char* pEncoding = NULL;
   FILE* pFile = NULL;
   EVP_PKEY *pPubKey = NULL;
   RSA* pRsa = NULL;
   BIO *bio, *b64;

   ERR_load_crypto_strings(); 
   OpenSSL_add_all_algorithms();

   if (argc != 3)
   {
      printf("usage: %s public_key_file_name ssh_key_description\n", argv[0]);
      iRet = 1;
      goto error;
   }

   pFile = fopen(argv[1], "rt");
   if (!pFile)
   {
      printf("Failed to open the given file\n");
      iRet = 2;
      goto error;
   }

   pPubKey = PEM_read_PUBKEY(pFile, NULL, NULL, NULL);
   if (!pPubKey)
   {
      printf("Unable to decode public key from the given file: %s\n", ERR_error_string(ERR_get_error(), NULL));
      iRet = 3;
      goto error;
   }

   if (EVP_PKEY_type(pPubKey->type) != EVP_PKEY_RSA)
   {
      printf("Only RSA public keys are currently supported\n");
      iRet = 4;
      goto error;
   }

   pRsa = EVP_PKEY_get1_RSA(pPubKey);
   if (!pRsa)
   {
      printf("Failed to get RSA public key : %s\n", ERR_error_string(ERR_get_error(), NULL));
      iRet = 5;
      goto error;
   }

   // reading the modulus
   nLen = BN_num_bytes(pRsa->n);
   nBytes = (unsigned char*) malloc(nLen);
   BN_bn2bin(pRsa->n, nBytes);

   // reading the public exponent
   eLen = BN_num_bytes(pRsa->e);
   eBytes = (unsigned char*) malloc(eLen);
   BN_bn2bin(pRsa->e, eBytes);

   encodingLength = 11 + 4 + eLen + 4 + nLen;
   // correct depending on the MSB of e and N
   if (eBytes[0] & 0x80)
      encodingLength++;
   if (nBytes[0] & 0x80)
      encodingLength++;

   pEncoding = (unsigned char*) malloc(encodingLength);
   memcpy(pEncoding, pSshHeader, 11);

   index = SshEncodeBuffer(&pEncoding[11], eLen, eBytes);
   index = SshEncodeBuffer(&pEncoding[11 + index], nLen, nBytes);

   b64 = BIO_new(BIO_f_base64());
   BIO_set_flags(b64, BIO_FLAGS_BASE64_NO_NL);
   bio = BIO_new_fp(stdout, BIO_NOCLOSE);
   BIO_printf(bio, "ssh-rsa ");
   bio = BIO_push(b64, bio);
   BIO_write(bio, pEncoding, encodingLength);
   BIO_flush(bio);
   bio = BIO_pop(b64);
   BIO_printf(bio, " %s\n", argv[2]);
   BIO_flush(bio);
   BIO_free_all(bio);
   BIO_free(b64);

error:
   if (pFile)
      fclose(pFile);
   if (pRsa)
      RSA_free(pRsa);
   if (pPubKey)
      EVP_PKEY_free(pPubKey);
   if (nBytes)
      free(nBytes);
   if (eBytes)
      free(eBytes);
   if (pEncoding)
      free(pEncoding);

   EVP_cleanup();
   ERR_free_strings();
   return iRet;
}

2
如果有人想知道如何编译(我曾经),这里是编译器调用:gcc -o pubkey2ssh pubkey2ssh.c -lcrypto
Andreas Gohr 2011年

其中不上获取的argv [2] ...我只是有一个----- BEGIN RSA公钥----- MIGJAoGBAMC62xWiOZYlhUhmk + JESy5eZunwGoG9kSHUMn67iBNZLEsR2qN44J1B TOtZRuEsSAKxu7alFlJVu5aSGbUvin3DusYAsl5sZjTf9VZgJHsVycOrtChC1tUi WMAWfv2BLTmK4zBEC33riEBLeX8Trphp3YbIMtzqV81ZrzHZbSnrAgMBAAE = ----- END RSA公共KEY--(ssh_key_description) ---没有描述
braden

@braden。通常,它只是密钥所有者的电子邮件地址。但是您可以在描述中输入您想要的任何内容。
deltamind106 2015年


以下来自@mkalkov的答案使用Linux命令行工具进行了转换。它只需要删除了标头和合并的行作为输入的公钥pem文件。
alexandroid

13
ssh-keygen -i -m PKCS8 -f public-key.pem

3
不适用于我:“ do_convert_from_pkcs8:key.pem不是公认的公钥格式”。起作用的是“ ssh-keygen -y -f key.pem”,它打印出authorized_keys所需的ssh-rsa文本。
Curt

1
这不起作用do_convert_from_pkcs8: TEST.pem is not a recognised public key format
Jinna Balu

之后openssl genrsa -out newkey.pem 2048和之后为我工作openssl rsa -in newkey.pem -outform PEM -pubout -out newkeypublic.pem
xirix


6

我做了

ssh-keygen -i -f $ sshkeysfile >>认证密钥

信誉在这里


1
您为什么不赞扬上面的Victor?大约8个月前,他给了您同样的命令。
jww 2015年

1
@jww从Victor回复的编辑日志中,您可能会看到原来的答案有些不同,我认为这是原因
periklis

4

以下脚本将获取以base64编码的DER格式的ci.jenkins-ci.org公共密钥证书,并将其转换为OpenSSH公共密钥文件。该代码假定使用2048位RSA密钥,并且从Ian Boyd的答案中汲取了很多东西。在Jenkins Wiki上对本文的评论中,我已经解释了它的工作原理。

echo -n "ssh-rsa " > jenkins.pub
curl -sfI https://ci.jenkins-ci.org/ | grep X-Instance-Identity | tr -d \\r | cut -d\  -f2 | base64 -d | dd bs=1 skip=32 count=257 status=none | xxd -p -c257 | sed s/^/00000007\ 7373682d727361\ 00000003\ 010001\ 00000101\ / | xxd -p -r | base64 -w0 >> jenkins.pub
echo >> jenkins.pub

OMG,这是最好的答案!而且有效!(我只需要用status = noxfer替换status = none)。只需使用第二个以“ base64”开头的命令,并在输入时给它一个PEM文件,去掉标题,并将所有行连接为一个。谢谢@mkalkov!
alexandroid

请注意,以上命令假定使用2048位密钥,并且如果给定其他大小的密钥,则将无法正常工作。
alexandroid

1

FWIW,此BASH脚本将采用PEM或DER格式的X.509证书或OpenSSL公共密钥文件(也为PEM格式)作为第一个参数,并对OpenSSH RSA公共密钥进行分类。这扩展了@mkalkov的上述答案。的要求是catgreptrddxxdsedxargsfileuuidgenbase64openssl,当然(1.0+) bash。除了openssl(包含base64)以外,所有其他东西都可以保证是任何现代Linux系统上基本安装的一部分,但可能除外xxd(Fedora在vim-common软件包中显示)。如果有人想清理它并使它变得更好,请告诫。

#!/bin/bash
#
# Extract a valid SSH format public key from an X509 public certificate.
#

# Variables:
pubFile=$1
fileType="no"
pkEightTypeFile="$pubFile"
tmpFile="/tmp/`uuidgen`-pkEightTypeFile.pk8"

# See if a file was passed:
[ ! -f "$pubFile" ] && echo "Error, bad or no input file $pubFile." && exit 1

# If it is a PEM format X.509 public cert, set $fileType appropriately:
pemCertType="X$(file $pubFile | grep 'PEM certificate')"
[ "$pemCertType" != "X" ] && fileType="PEM"

# If it is an OpenSSL PEM-format PKCS#8-style public key, set $fileType appropriately:
pkEightType="X$(grep -e '-BEGIN PUBLIC KEY-' $pubFile)"
[ "$pkEightType" != "X" ] && fileType="PKCS"

# If this is a file we can't recognise, try to decode a (binary) DER-format X.509 cert:
if [ "$fileType" = "no" ]; then
        openssl x509 -in $pubFile -inform DER -noout
        derResult=$(echo $?)
        [ "$derResult" = "0" ] && fileType="DER"
fi

# Exit if not detected as a file we can use:
[ "$fileType" = "no" ] && echo "Error, input file not of type X.509 public certificate or OpenSSL PKCS#8-style public key (not encrypted)." && exit 1

# Convert the X.509 public cert to an OpenSSL PEM-format PKCS#8-style public key:
if [ "$fileType" = "PEM" -o "$fileType" = "DER" ]; then
        openssl x509 -in $pubFile -inform $fileType -noout -pubkey > $tmpFile
        pkEightTypeFile="$tmpFile"
fi

# Build the string:
# Front matter:
frontString="$(echo -en 'ssh-rsa ')"

# Encoded modulus and exponent, with appropriate pointers:
encodedModulus="$(cat $pkEightTypeFile | grep -v -e "----" | tr -d '\n' | base64 -d | dd bs=1 skip=32 count=257 status=none | xxd -p -c257 | sed s/^/00000007\ 7373682d727361\ 00000003\ 010001\ 00000101\ / | xxd -p -r | base64 -w0 )"

# Add a comment string based on the filename, just to be nice:
commentString=" $(echo $pubFile | xargs basename | sed -e 's/\.crt\|\.cer\|\.pem\|\.pk8\|\.der//')"

# Give the user a string:
echo $frontString $encodedModulus $commentString

# cleanup:
rm -f $tmpFile
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.