You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

66 lines
1.2 KiB
Go

package main
import (
"crypto/x509"
"encoding/pem"
"flag"
"fmt"
"os"
"github.com/lqqyt2423/go-mitmproxy/cert"
log "github.com/sirupsen/logrus"
)
// 生成假的/用于测试的服务器证书
type Config struct {
commonName string
}
func loadConfig() *Config {
config := new(Config)
flag.StringVar(&config.commonName, "commonName", "", "server commonName")
flag.Parse()
return config
}
func main() {
log.SetLevel(log.InfoLevel)
log.SetReportCaller(false)
log.SetOutput(os.Stdout)
log.SetFormatter(&log.TextFormatter{
FullTimestamp: true,
})
config := loadConfig()
if config.commonName == "" {
log.Fatal("commonName required")
}
ca, err := cert.NewCA("")
if err != nil {
panic(err)
}
cert, err := ca.DummyCert(config.commonName)
if err != nil {
panic(err)
}
os.Stdout.WriteString(fmt.Sprintf("%v-cert.pem\n", config.commonName))
err = pem.Encode(os.Stdout, &pem.Block{Type: "CERTIFICATE", Bytes: cert.Certificate[0]})
if err != nil {
panic(err)
}
os.Stdout.WriteString(fmt.Sprintf("\n%v-key.pem\n", config.commonName))
keyBytes, err := x509.MarshalPKCS8PrivateKey(&ca.PrivateKey)
if err != nil {
panic(err)
}
err = pem.Encode(os.Stdout, &pem.Block{Type: "PRIVATE KEY", Bytes: keyBytes})
if err != nil {
panic(err)
}
}