add ms gost (#718)

* add ms gost

* change gost branch
This commit is contained in:
sadayuki-matsuno
2018-10-05 12:45:26 +09:00
committed by Kota Kanbe
parent 50506be546
commit e8188f3432
5 changed files with 178 additions and 38 deletions

View File

@@ -228,6 +228,8 @@ func NewCveContentType(name string) CveContentType {
return RedHatAPI
case "debian_security_tracker":
return DebianSecurityTracker
case "microsoft":
return Microsoft
default:
return Unknown
}
@@ -264,6 +266,9 @@ const (
// SUSE is SUSE Linux
SUSE CveContentType = "suse"
// Microsoft is Microsoft
Microsoft CveContentType = "microsoft"
// Unknown is Unknown
Unknown CveContentType = "unknown"
)