duanjia7912 2017-09-26 12:33
浏览 396
已采纳

转到-如何从PublicKey生成SSH PublicKey指纹,PublicKey的类型可能是[rsa dsa ssh-rsa ssh-dss ecdsa]之一

I only have a PublicKey string, How do I get the PublicKey Fingerprint? I have got some idea form https://go-review.googlesource.com/c/crypto/+/32814, but I do not know how to
implement ssh.PublicKey interface.

  • 写回答

1条回答 默认 最新

  • dreinuqm992401 2017-09-26 15:08
    关注

    You probably want to use ssh.ParseAuthorizedKey from the ssh package to load the key:

    https://godoc.org/golang.org/x/crypto/ssh#ParseAuthorizedKey

    That will give you a public key which you can call ssh.FingerprintLegacyMD5 on in order to get the fingerprint (assuming here you want the md5).

    https://godoc.org/golang.org/x/crypto/ssh#FingerprintLegacyMD5 https://godoc.org/golang.org/x/crypto/ssh#FingerprintSHA256

    func main() {
        // Read a key from a file in authorized keys file line format
        // This could be an rsa.pub file or a line from authorized_keys
        pubKeyBytes := []byte(`ssh-rsa AAAABMYKEY...ABC me@myplace.local`)
    
        // Parse the key, other info ignored
        pk, _, _, _, err := ssh.ParseAuthorizedKey(pubKeyBytes)
        if err != nil {
            panic(err)
        }
    
        // Get the fingerprint
        f := ssh.FingerprintLegacyMD5(pk)
    
        // Print the fingerprint
        fmt.Printf("%s
    ", f)
    }
    

    There are two fingerprint functions provided, not sure which one you need.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 运筹学排序问题中的在线排序
  • ¥15 关于docker部署flink集成hadoop的yarn,请教个问题 flink启动yarn-session.sh连不上hadoop,这个整了好几天一直不行,求帮忙看一下怎么解决
  • ¥30 求一段fortran代码用IVF编译运行的结果
  • ¥15 深度学习根据CNN网络模型,搭建BP模型并训练MNIST数据集
  • ¥15 lammps拉伸应力应变曲线分析
  • ¥15 C++ 头文件/宏冲突问题解决
  • ¥15 用comsol模拟大气湍流通过底部加热(温度不同)的腔体
  • ¥50 安卓adb backup备份子用户应用数据失败
  • ¥20 有人能用聚类分析帮我分析一下文本内容嘛
  • ¥15 请问Lammps做复合材料拉伸模拟,应力应变曲线问题