golang生成安全证书,用于本地调试https

skoll · · 3132 次点击 · · 开始浏览    
这是一个创建于 的文章,其中的信息可能已经有所发展或是发生改变。

package main

import(
    // "crypto/rand"
    // "crypto/rsa"
    // "crypto/x509"
    // "crypto/x509/pkix"
    // "encoding/pem"
    // "math/big"
    // "net"
    // "os"
    // "time"

    "net/http"
    "log"
    "io"
)
func main(){
    // max:=new(big.Int).Lsh(big.NewInt(1),128)
    // serialNumber,_:=rand.Int(rand.Reader,max)
    // subject:=pkix.Name{
    //  Organization:[]string{"燕子李三"},
    //  OrganizationalUnit:[]string{"Books"},
    //  CommonName:"GO Web",
    // }

    // rootTemplate := x509.Certificate{
    //  SerialNumber: serialNumber,
    //  Subject:subject,
    //  NotBefore: time.Now(),
    //  NotAfter:time.Now().Add(365*time.Hour),
    //  KeyUsage:x509.KeyUsageKeyEncipherment,
    //  ExtKeyUsage:[]x509.ExtKeyUsage{x509.ExtKeyUsageServerAuth},
    //  IPAddresses:[]net.IP{net.ParseIP("127.0.0.1")},
    // }
    // pk,_:=rsa.GenerateKey(rand.Reader,2048)
    // derBytes,_:=x509.CreateCertificate(rand.Reader,&rootTemplate,&rootTemplate,&pk.PublicKey,pk)

    // certOut,_:=os.Create("cert.pem")
    // pem.Encode(certOut,&pem.Block{Type:"CERTIFICATE",Bytes:derBytes})

    // certOut.Close()

    // keyOut,_:=os.Create("key.pem")
    // pem.Encode(keyOut,&pem.Block{Type:"RSA PRIVATE KEY",Bytes:x509.MarshalPKCS1PrivateKey(pk)})
    // keyOut.Close()



    http.HandleFunc("/", func(w http.ResponseWriter, req *http.Request) {
        io.WriteString(w, "Hello, TLS!\n")
    })

    // One can use generate_cert.go in crypto/tls to generate cert.pem and key.pem.
    log.Printf("About to listen on 8443. Go to https://127.0.0.1:8443/")
    err := http.ListenAndServeTLS(":8443", "cert.pem", "key.pem", nil)
    log.Fatal(err)


}

有疑问加站长微信联系(非本文作者)

本文来自:简书

感谢作者:skoll

查看原文:golang生成安全证书,用于本地调试https

入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889

3132 次点击  
加入收藏 微博
暂无回复
添加一条新回复 (您需要 登录 后才能回复 没有账号 ?)
  • 请尽量让自己的回复能够对别人有帮助
  • 支持 Markdown 格式, **粗体**、~~删除线~~、`单行代码`
  • 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
  • 图片支持拖拽、截图粘贴等方式上传