我是靠谱客的博主 虚心天空,最近开发中收集的这篇文章主要介绍ERROR: You‘re using an RSA key with SHA-1, which is no longer allowed.,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

ERROR: You’re using an RSA key with SHA-1, which is no longer allowed.
在这里插入图片描述
通过baidu,从错误下面给出的官方文档 https://github.blog/2021-09-01-improving-git-protocol-security-github/ 可以看到,github对SSH密钥做了升级,原来的SHA-1,rsa等一些已经不支持了,由于我使用的是rsa,可能和大部分用户一样,所以今天在push代码时候遇到了这个问题,记录以下。
生成新的Ed25519密钥对:
ssh-keygen -t ed25519 -C "your-email"
一路回车。
会在.ssh目录下生成两个文件

id_ed25519
id_ed25519.pub

将id_ed25519.pub文件中的内容copy,拿出来到github上
这里:

在这里插入图片描述
添加一个新的ssh keys即可
验证key是否可用:使用 ssh -T git@github.com 对ssh key 进行验证

之后就可以正常使用push命令上传了。

最后

以上就是虚心天空为你收集整理的ERROR: You‘re using an RSA key with SHA-1, which is no longer allowed.的全部内容,希望文章能够帮你解决ERROR: You‘re using an RSA key with SHA-1, which is no longer allowed.所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(45)

评论列表共有 0 条评论

立即
投稿
返回
顶部