mirror of
https://github.com/emmansun/gmsm.git
synced 2025-04-25 03:36:18 +08:00
13 lines
315 B
Go
13 lines
315 B
Go
package smx509
|
|
|
|
//
|
|
// We DO NOT support system verify on darwin due to complex internal package dependencies.
|
|
//
|
|
func (c *Certificate) systemVerify(opts *VerifyOptions) (chains [][]*Certificate, err error) {
|
|
return nil, nil
|
|
}
|
|
|
|
func loadSystemRoots() (*CertPool, error) {
|
|
return &CertPool{systemPool: true}, nil
|
|
}
|