forked from google/certificate-transparency-go
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for WASI port (google#1089)
Fix building when the new `wasip1` port is being used. This is a new target that will be introduced by go 1.21. For more details golang/go#58141 Signed-off-by: Flavio Castelli <fcastelli@suse.com>
- Loading branch information
Showing
2 changed files
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// Copyright 2018 The Go Authors. All rights reserved. | ||
// Use of this source code is governed by a BSD-style | ||
// license that can be found in the LICENSE file. | ||
|
||
//go:build wasip1 | ||
// +build wasip1 | ||
|
||
package x509 | ||
|
||
// Possible certificate files; stop after finding one. | ||
var certFiles = []string{} | ||
|
||
func loadSystemRoots() (*CertPool, error) { | ||
return NewCertPool(), nil | ||
} | ||
|
||
func (c *Certificate) systemVerify(opts *VerifyOptions) (chains [][]*Certificate, err error) { | ||
return nil, nil | ||
} |