传统的 RSA 算法的 SSH Key 已经被 GitHub 废弃了,现在需要使用新的算法:
ssh-keygen -t ed25519 -C "[email protected]"
会生成使用 ed25519
算法的公钥和私钥,把公钥文件内容更新到 GitHub 上就可以了:
cat ~/.ssh/id_ed25519.pub | pbcopy
Apr 19, 2024 • 预计阅读时间 1 分钟
传统的 RSA 算法的 SSH Key 已经被 GitHub 废弃了,现在需要使用新的算法:
ssh-keygen -t ed25519 -C "[email protected]"
会生成使用 ed25519
算法的公钥和私钥,把公钥文件内容更新到 GitHub 上就可以了:
cat ~/.ssh/id_ed25519.pub | pbcopy