github.com/aporeto-inc/trireme-lib@v10.358.0+incompatible/controller/pkg/claimsheader/constants.go (about) 1 package claimsheader 2 3 const ( 4 // maxHeaderLen must be maximimum claims header length 5 maxHeaderLen = 4 6 // zeroBit is the value 0 7 zeroBit = 0x00 8 // encryptionEnabledBit that is set in the bytes 9 encryptionEnabledBit = 0x01 10 // pingEnabledBit that is set in the bytes 11 pingEnabledBit = 0x02 12 )