github ssh key的SHA256是什么

github ssh key的SHA256是什么

怎么知道github上自己的公钥指纹和本地的公钥是否一致?

计算方法如下:

bash 复制代码
cat .ssh/id_rsa.pub    |
    awk '{ print $2 }' | # Only the actual key data without prefix or comments
    base64 -d          | # decode as base64
    sha256sum          | # SHA256 hash (returns hex)
    awk '{ print $1 }' | # only the hex data
    xxd -r -p          | # hex to bytes
    base64               # encode as base64
相关推荐
玄武 剑几秒前
开源自动化热键映射工具autohotkey十大用法及精选脚本
运维·自动化
登云时刻2 分钟前
【问题记录】Jenkins Pipeline读取变量的各种方法
运维·jenkins
weishenjieneng5 分钟前
微深节能 煤码头自动化翻堆及取料集控系统 格雷母线
运维·自动化
威斯盾科技11 分钟前
电力设备巡检管理系统
运维·网络·信息可视化
zhishengwangxiao15 分钟前
职升网:一级计量师证书含金量有多少?
运维·服务器
科学的发展-只不过是读大自然写的代码25 分钟前
ubuntu 进入命令行
linux·运维·ubuntu
念晚91729 分钟前
Linux——测网速例子,在网站查看生成的图片
linux·运维·服务器·网络·数据库
运维Linux和python38 分钟前
从nginx返回404来看http1.0和http1.1的区别
运维·nginx
-Se7ven43 分钟前
Linux修改服务器hostname方法
linux·服务器·github
人生匆匆3 小时前
docker安装elasticesarch-head
运维·docker·jenkins