mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-05 14:43:03 +00:00
a994bf8b04
* chore: fix some errors detected by staticcheck * feat: remove `rand.Seed()` usage for possibly using "fastrand64" runtime to avoid locking ref: https://pkg.go.dev/math/rand#Seed
41 lines
947 B
Go
41 lines
947 B
Go
package tls
|
|
|
|
import (
|
|
"flag"
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/xtls/xray-core/main/commands/base"
|
|
"github.com/xtls/xray-core/transport/internet/tls"
|
|
)
|
|
|
|
var cmdCertChainHash = &base.Command{
|
|
UsageLine: "{{.Exec}} certChainHash",
|
|
Short: "Calculate TLS certificates hash.",
|
|
Long: `
|
|
xray tls certChainHash --cert <cert.pem>
|
|
Calculate TLS certificate chain hash.
|
|
`,
|
|
}
|
|
|
|
func init() {
|
|
cmdCertChainHash.Run = executeCertChainHash // break init loop
|
|
}
|
|
|
|
var input = cmdCertChainHash.Flag.String("cert", "fullchain.pem", "The file path of the certificates chain")
|
|
|
|
func executeCertChainHash(cmd *base.Command, args []string) {
|
|
fs := flag.NewFlagSet("certChainHash", flag.ContinueOnError)
|
|
if err := fs.Parse(args); err != nil {
|
|
fmt.Println(err)
|
|
return
|
|
}
|
|
certContent, err := os.ReadFile(*input)
|
|
if err != nil {
|
|
fmt.Println(err)
|
|
return
|
|
}
|
|
certChainHashB64 := tls.CalculatePEMCertChainSHA256Hash(certContent)
|
|
fmt.Println(certChainHashB64)
|
|
}
|