gost_software/vendor/github.com/lucas-clemente/quic-go/protocol/encryption_level.go
2017-03-24 11:24:03 +02:00

15 lines
345 B
Go

package protocol
// EncryptionLevel is the encryption level
// Default value is Unencrypted
type EncryptionLevel int
const (
// Unencrypted is not encrypted
Unencrypted EncryptionLevel = iota
// EncryptionSecure is encrypted, but not forward secure
EncryptionSecure
// EncryptionForwardSecure is forward secure
EncryptionForwardSecure
)