1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-12-21 17:46:58 -05:00

Add back tls certChainHash command

This commit is contained in:
Shelikhoo 2024-09-07 17:57:57 +01:00 committed by Xiaokang Wang (Shelikhoo)
parent 764fb2f7d8
commit 80f1e2fa17
2 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1,34 @@
package tls
import (
"fmt"
"os"
"github.com/v2fly/v2ray-core/v5/main/commands/base"
v2tls "github.com/v2fly/v2ray-core/v5/transport/internet/tls"
)
var cmdChainHash = &base.Command{
UsageLine: "{{.Exec}} tls certChainHash [--cert <cert.pem>]",
Short: "Generate certificate chain hash for given certificate bundle",
}
func init() {
cmdChainHash.Run = executeChainHash // break init loop
}
var certFile = cmdChainHash.Flag.String("cert", "cert.pem", "")
func executeChainHash(cmd *base.Command, args []string) {
if len(*certFile) == 0 {
base.Fatalf("cert file not specified")
}
certContent, err := os.ReadFile(*certFile)
if err != nil {
base.Fatalf("Failed to read cert file: %s", err)
return
}
certChainHashB64 := v2tls.CalculatePEMCertChainSHA256Hash(certContent)
fmt.Println(certChainHashB64)
}

View File

@ -14,5 +14,6 @@ var CmdTLS = &base.Command{
Commands: []*base.Command{
cmdCert,
cmdPing,
cmdChainHash,
},
}