gmsm/smx509/root_darwin.go

10 lines
227 B
Go
Raw Normal View History

2022-06-09 09:03:49 +08:00
package smx509
func (c *Certificate) systemVerify(opts *VerifyOptions) (chains [][]*Certificate, err error) {
return nil, nil
}
func loadSystemRoots() (*CertPool, error) {
2022-06-09 09:28:46 +08:00
return &CertPool{systemPool: true}, nil
2022-06-09 09:03:49 +08:00
}