allow up to 20 byte for the initial connection IDs

This commit is contained in:
Marten Seemann 2020-12-14 11:30:51 +07:00
parent deacefdd34
commit d226f70cd7
2 changed files with 7 additions and 7 deletions

View file

@ -10,7 +10,7 @@ import (
// A ConnectionID in QUIC // A ConnectionID in QUIC
type ConnectionID []byte type ConnectionID []byte
const maxConnectionIDLen = 18 const maxConnectionIDLen = 20
// GenerateConnectionID generates a connection ID using cryptographic random // GenerateConnectionID generates a connection ID using cryptographic random
func GenerateConnectionID(len int) (ConnectionID, error) { func GenerateConnectionID(len int) (ConnectionID, error) {
@ -22,7 +22,7 @@ func GenerateConnectionID(len int) (ConnectionID, error) {
} }
// GenerateConnectionIDForInitial generates a connection ID for the Initial packet. // GenerateConnectionIDForInitial generates a connection ID for the Initial packet.
// It uses a length randomly chosen between 8 and 18 bytes. // It uses a length randomly chosen between 8 and 20 bytes.
func GenerateConnectionIDForInitial() (ConnectionID, error) { func GenerateConnectionIDForInitial() (ConnectionID, error) {
r := make([]byte, 1) r := make([]byte, 1)
if _, err := rand.Read(r); err != nil { if _, err := rand.Read(r); err != nil {

View file

@ -25,21 +25,21 @@ var _ = Describe("Connection ID generation", func() {
}) })
It("generates random length destination connection IDs", func() { It("generates random length destination connection IDs", func() {
var has8ByteConnID, has18ByteConnID bool var has8ByteConnID, has20ByteConnID bool
for i := 0; i < 1000; i++ { for i := 0; i < 1000; i++ {
c, err := GenerateConnectionIDForInitial() c, err := GenerateConnectionIDForInitial()
Expect(err).ToNot(HaveOccurred()) Expect(err).ToNot(HaveOccurred())
Expect(c.Len()).To(BeNumerically(">=", 8)) Expect(c.Len()).To(BeNumerically(">=", 8))
Expect(c.Len()).To(BeNumerically("<=", 18)) Expect(c.Len()).To(BeNumerically("<=", 20))
if c.Len() == 8 { if c.Len() == 8 {
has8ByteConnID = true has8ByteConnID = true
} }
if c.Len() == 18 { if c.Len() == 20 {
has18ByteConnID = true has20ByteConnID = true
} }
} }
Expect(has8ByteConnID).To(BeTrue()) Expect(has8ByteConnID).To(BeTrue())
Expect(has18ByteConnID).To(BeTrue()) Expect(has20ByteConnID).To(BeTrue())
}) })
It("says if connection IDs are equal", func() { It("says if connection IDs are equal", func() {