Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion openapi3/security_scheme.go
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ func (ss *SecurityScheme) Validate(c context.Context) error {
switch scheme {
case "bearer":
hasBearerFormat = true
case "basic":
case "basic", "negotiate", "digest":
default:
return fmt.Errorf("Security scheme of type 'http' has invalid 'scheme' value '%s'", scheme)
}
Expand Down
20 changes: 20 additions & 0 deletions openapi3/security_scheme_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,26 @@ var securitySchemeExamples = []securitySchemeExample{
`),
valid: true,
},
{
title: "Negotiate Authentication Sample",
raw: []byte(`
{
"type": "http",
"scheme": "negotiate"
}
`),
valid: true,
},
{
title: "Unknown http Authentication Sample",
raw: []byte(`
{
"type": "http",
"scheme": "notvalid"
}
`),
valid: false,
},
{
title: "API Key Sample",
raw: []byte(`
Expand Down