Git 操作报错 no matching cipher found
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git 操作报错 no matching cipher found相关的知识,希望对你有一定的参考价值。
参考技术A 升级Mac的10.15.4后,git操作会报一个no matching cipher found. Their offer: aes128-cbc,3des-cbc,blowfish-cbc 的错误
在 ~/ssh/config下config中配置。如果没有config文件,自己创建一个。
Host *
SendEnv LANG LC_*
Ciphers +aes128-cbc,3des-cbc,aes192-cbc,aes256-cbc
mac系统idea开发工具git -push 报错:no matching host key type found. Their offer: ssh-dss
原因:
根本原因之所以报错是因为OpenSSH7.0以后的版本不再支持ssh-dss(DSA)算法,官方的说法是这个算法太弱了。MACOS升到10.12附带的openssh版本是7.4,如下:?~sshd-Vsshd:illegaloption--VOpenSSH_7
解决方案:
命令行里添加选项
ssh -oHostKeyAlgorithms=+ssh-dss [email protected]
添加 HostKeyAlgorithms +ssh-dss到配置 ~/.ssh/config
以上是关于Git 操作报错 no matching cipher found的主要内容,如果未能解决你的问题,请参考以下文章
[Python] 安装pyperclip报错: No matching distribution found for pyperclip
junit报错java.lang.Exception: No tests found matching
junit报错----java.lang.Exception: No tests found matching
在模拟器中安装apk报错:Failure [INSTALL_FAILED_NO_MATCHING_ABIS]
在模拟器中安装apk报错:Failure [INSTALL_FAILED_NO_MATCHING_ABIS]
SSL: no alternative certificate subject name matches target host name '127.0.0.1’