uquic/internal/protocol/key_phase.go
2019-06-30 17:36:09 +07:00

22 lines
366 B
Go

package protocol
// KeyPhaseBit is the key phase bit
type KeyPhaseBit bool
const (
// KeyPhaseZero is key phase 0
KeyPhaseZero KeyPhaseBit = false
// KeyPhaseOne is key phase 1
KeyPhaseOne KeyPhaseBit = true
)
func (p KeyPhaseBit) String() string {
if p == KeyPhaseZero {
return "0"
}
return "1"
}
func (p KeyPhaseBit) Next() KeyPhaseBit {
return !p
}