当前位置:   article > 正文

git 出现 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 i

error: you're using an rsa key with sha-1, which is no longer allowed. pleas

1. 问题描述

git pull时(或git push, git clone等),出现如下问题。
在这里插入图片描述

2. 原因分析

原因是在2022年3月15日之后,github不再支持SHA-1的加密方式了。

3. 解决方案

将SHA-1的加密方式修改为ECDSA的方式,并把公钥加入到github中,具体操作步骤如下。

3.1 生成ECDSA密钥

执行如下命令。

ssh-keygen -t ecdsa -b 521 -C "your_email@example.com"
  • 1

按照如下截图操作。
在这里插入图片描述
生成好了之后会在~/.ssh目录中看到多出两个文件id_ecdsaid_ecdsa.pub,分别为私钥和公钥。

3.2 打开github的SSH keys页面

从github的右上角点击向下的小箭头,然后选择Settings
在这里插入图片描述
选择SSH and GPG keys,然后点击New SSH key
在这里插入图片描述

3.3 在github中设置公钥。

首先执行命令gedit ~/.ssh/id_ecdsa.pub打开ECDSA的公钥,复制全部内容,粘贴到下边位置。
在这里插入图片描述

4. 参考资料

  1. https://stackoverflow.com/questions/71500791/eclipse-git-youre-using-an-rsa-key-with-sha-1-which-is-no-longer-allowed-pl
  2. https://exerror.com/youre-using-an-rsa-key-with-sha-1-which-is-no-longer-allowed-please-use-a-newer-client-or-a-different-key-type/
  3. github拉取代码报:You‘re using an RSA key with SHA-1, which is no longer allowed
  4. https://github.blog/2021-09-01-improving-git-protocol-security-github/
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/409011
推荐阅读
相关标签
  

闽ICP备14008679号