简体   繁体   English

如何显示网站证书的公钥

[英]How to show the public key for a website certificate

I've created a Go program to connect to a website and get the certificates it uses. 我创建了一个Go程序来连接到网站并获取其使用的证书。 I'm not sure how to get the correct representation of the public key. 我不确定如何获得公钥的正确表示。

I can fetch the certificate and I can type check on Certificate.PublicKey. 我可以获取证书,并且可以在Certificate.PublicKey上键入check。 Once I understand it's rsa.PublicKey or ecdsa.PublicKey I'd need to print the hex representation of it. 一旦了解了rsa.PublicKey或ecdsa.PublicKey,我就需要打印它的十六进制表示形式。

switch cert.PublicKey.(type) {
case *rsa.PublicKey:
    logrus.Error("this is RSA")
    // TODO: print hex representation of key
case *ecdsa.PublicKey:
    logrus.Error("this is ECDSA")
    // TODO: print hex representation of key
default:
    fmt.Println("it's something else")
}

I'd expect it to print something like: 我希望它能打印出类似以下内容:

04 4B F9 47 1B A8 A8 CB A4 C6 C0 2D 45 DE 43 F3 BC F5 D2 98 F4 25 90 6F 13 0D 78 1A AC 05 B4 DF 7B F6 06 5C 80 97 9A 53 06 D0 DB 0E 15 AD 03 DE 14 09 D3 77 54 B1 4E 15 A8 AF E3 FD DC 9D AD E0 C5

it seems you are asking for the sha1 sum of the certificates involved. 看来您要索取所涉及证书的sha1总和。 here is a working example that asks for a host:port and prints the sums of the certificates involved 这是一个要求提供host:port并打印所涉及证书总和的工作示例

package main

import (
        "crypto/sha1"
        "crypto/tls"
        "fmt"
        "log"
        "os"
)

func main() {
        if len(os.Args) != 2 {
                log.Panic("call with argument of host:port")
        }
        log.SetFlags(log.Lshortfile)

        conf := &tls.Config{
                //InsecureSkipVerify: true,
        }
        fmt.Printf("dialing:%s\n", os.Args[1])
        conn, err := tls.Dial("tcp", os.Args[1], conf)
        if err != nil {
                log.Println(err)
                return
        }
        defer conn.Close()
        for i, v := range conn.ConnectionState().PeerCertificates {
                //edit: use %X for uppercase hex printing
                fmt.Printf("cert %d sha1 fingerprint:%x \n", i, sha1.Sum(v.Raw))
        }
}

run as: 运行为:

./golang-tls www.google.com:443
dialing:www.google.com:443
cert 0 sha1 fingerprint:34781c3be98cf958f514aecb1ae2e4e866effe34
cert 1 sha1 fingerprint:eeacbd0cb452819577911e1e6203db262f84a318

for general notions on SSL i have found this stackexchange answer to be extremely valuable. 对于SSL的一般概念,我发现这个stackexchange答案非常有价值。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM