safing-jess/suite.go
2021-10-01 13:58:26 +02:00

17 lines
378 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
}