LoginSignup
72
61

More than 5 years have passed since last update.

秘密鍵から公開鍵を生成する

Posted at

OpenSSH形式(~/.ssh/authorized_keysに使う形式)の公開鍵を生成

ssh-keygen -yf ${private_key_file} > ${public_key_file}

(参考) PEM形式の公開鍵を生成

openssl rsa -in ${private_key_file} -pubout -out ${public_key_file}
72
61
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
72
61