Files
vault/main.go
hc-github-team-secure-vault-core 5bbeaa789d backport of commit fe88bdb385 (#18380)
Co-authored-by: Christopher Swenson <christopher.swenson@hashicorp.com>
2022-12-14 20:35:56 +00:00

18 lines
302 B
Go

package main // import "github.com/hashicorp/vault"
import (
"os"
"github.com/hashicorp/vault/command"
"github.com/hashicorp/vault/internal"
)
func init() {
// this is a good place to patch SHA-1 support back into x509
internal.PatchSha1()
}
func main() {
os.Exit(command.Run(os.Args[1:]))
}