gmsm/smx509/root_darwin.go
2022-06-09 09:03:49 +08:00

14 lines
290 B
Go

package smx509
import (
"errors"
)
func (c *Certificate) systemVerify(opts *VerifyOptions) (chains [][]*Certificate, err error) {
return nil, nil
}
func loadSystemRoots() (*CertPool, error) {
return nil, errors.New("x509: gmsm does not support darwin system root yet")
}