mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 13:17:36 +03:00
22 lines
366 B
Go
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
|
|
}
|