gmsm/smx509/root_darwin.go
2022-07-15 16:42:39 +08:00

10 lines
218 B
Go

package smx509
func (c *Certificate) systemVerify(opts *VerifyOptions) (chains [][]*Certificate, err error) {
return nil, nil
}
func loadSystemRoots() (*CertPool, error) {
return &CertPool{systemPool: true}, nil
}