Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(82)

Side by Side Diff: src/pkg/crypto/x509/root_stub.go

Issue 6571056: code review 6571056: crypto/x509: add Plan 9 root certificate location (Closed)
Patch Set: diff -r 99bb8c9e067d https://code.google.com/p/go Created 11 years, 6 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/pkg/crypto/x509/root_plan9.go ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2011 The Go Authors. All rights reserved. 1 // Copyright 2011 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style 2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file. 3 // license that can be found in the LICENSE file.
4 4
5 // +build plan9 darwin,!cgo 5 // +build darwin,!cgo
6 6
7 package x509 7 package x509
8 8
9 func (c *Certificate) systemVerify(opts *VerifyOptions) (chains [][]*Certificate , err error) { 9 func (c *Certificate) systemVerify(opts *VerifyOptions) (chains [][]*Certificate , err error) {
10 return nil, nil 10 return nil, nil
11 } 11 }
12 12
13 func initSystemRoots() { 13 func initSystemRoots() {
14 systemRoots = NewCertPool() 14 systemRoots = NewCertPool()
15 } 15 }
OLDNEW
« no previous file with comments | « src/pkg/crypto/x509/root_plan9.go ('k') | no next file » | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b