TGTGInsighttelegram intelligenceLIVE / telegram public index
Post content
帖子内容
#tips 获取 SSH Key 指纹,查看 GitHub 里关联的是哪个 key # 默认 sha256 ssh-keygen -lf ~/.ssh/id_rsa # 或指定算法,例如 md5 ssh-keygen -E md5 -lf ~/.ssh/id_rsa 注意:一对公私钥指纹相同 via. https://www.shellhacks.com/ssh-fingerprint-get-fingerprint-of-ssh-rsa-key/