mirror of
https://github.com/emmansun/gmsm.git
synced 2025-04-25 19:56:18 +08:00
14 lines
290 B
Go
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")
|
|
}
|