-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This fixes an issue mapping Google TPM EC Curves from Webauthn COSE EC Curves. Co-authored-by: Alex Seigler <[email protected]>
- Loading branch information
1 parent
46f365d
commit 6be1bd6
Showing
6 changed files
with
299 additions
and
11 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
--- | ||
run: | ||
timeout: 3m | ||
|
||
linters-settings: | ||
goconst: | ||
min-len: 2 | ||
min-occurrences: 2 | ||
gocyclo: | ||
min-complexity: 15 | ||
godot: | ||
check-all: true | ||
goimports: | ||
local-prefixes: github.com/go-webauthn/webauthn | ||
|
||
linters: | ||
enable: | ||
- asciicheck | ||
- goconst | ||
- gocritic | ||
- gocyclo | ||
- godot | ||
- gofmt | ||
- goimports | ||
- gosec | ||
- misspell | ||
- nolintlint | ||
- prealloc | ||
- revive | ||
- unconvert | ||
- unparam | ||
- whitespace | ||
- wsl | ||
|
||
issues: | ||
exclude: | ||
- Error return value of .((os\.)?std(out|err)\..*|.*Close|.*Flush|os\.Remove(All)?|.*printf?|os\.(Un)?Setenv). is not checked # yamllint disable-line rule:line-length | ||
- func name will be used as test\.Test.* by other packages, and that stutters; consider calling this | ||
- (possible misuse of unsafe.Pointer|should have signature) | ||
- ineffective break statement. Did you mean to break out of the outer loop | ||
- Use of unsafe calls should be audited | ||
- Subprocess launch(ed with variable|ing should be audited) | ||
- (G104|G307) | ||
- (Expect directory permissions to be 0750 or less|Expect file permissions to be 0600 or less) | ||
- Potential file inclusion via variable | ||
exclude-use-default: false | ||
max-issues-per-linter: 0 | ||
max-same-issues: 0 | ||
... |
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
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
Oops, something went wrong.