aboutsummaryrefslogtreecommitdiff
path: root/feed/v2authentication.go
diff options
context:
space:
mode:
Diffstat (limited to 'feed/v2authentication.go')
-rw-r--r--feed/v2authentication.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/feed/v2authentication.go b/feed/v2authentication.go
index 853954f..56af521 100644
--- a/feed/v2authentication.go
+++ b/feed/v2authentication.go
@@ -13,6 +13,7 @@ type V2Authentication byte
const (
V2AuthNone V2Authentication = iota // NONE
V2AuthSingle // SINGLE
+ V2AuthMultiple // MULTIPLE
)
// Unmarshal CVSS V2 authentication from JSON.
@@ -29,6 +30,8 @@ func (me *V2Authentication) UnmarshalJSON(b []byte) error {
*me = V2AuthNone
case "SINGLE":
*me = V2AuthSingle
+ case "MULTIPLE":
+ *me = V2AuthMultiple
default:
// return error
return fmt.Errorf("unknown CVSS v2 authentication: %s", s)