safing-jess/suite.go
Daniel 31216b0885 Remediate SAF-01-005 Crypto: Unnecessary Configurability Considered Dangerous (Medium)
This is a rather large commit, as the change from a toolset to the new cipher suite system has a large impact.
2020-01-24 16:04:15 +01:00

17 lines
377 B
Go

package jess
// Suite status options
const (
SuiteStatusDeprecated uint8 = 0
SuiteStatusPermitted uint8 = 1
SuiteStatusRecommended uint8 = 2
)
// Suite describes a cipher suite - a set of algorithms and the attributes they provide.
type Suite struct {
ID string
Tools []string
Provides *Requirements
SecurityLevel int
Status uint8
}