root_stub.go 339 B

1234567891011121314
  1. // Copyright 2011 The Go Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style
  3. // license that can be found in the LICENSE file.
  4. // +build darwin,!cgo
  5. package x509
  6. func (c *Certificate) systemVerify(opts *VerifyOptions) (chains [][]*Certificate, err error) {
  7. return nil, nil
  8. }
  9. func initSystemRoots() {
  10. }