use the CipherSuiteName function exposed by qtls

This function was recently added to the standard library TLS
implementation.
This commit is contained in:
Marten Seemann 2020-03-01 13:15:54 +07:00
parent 43dfc7281f
commit 114a790fd9
4 changed files with 11 additions and 21 deletions

View file

@ -7,6 +7,7 @@ import (
"fmt"
"github.com/lucas-clemente/quic-go/internal/protocol"
"github.com/marten-seemann/qtls"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
@ -16,7 +17,7 @@ var _ = Describe("Long Header AEAD", func() {
for i := range cipherSuites {
cs := cipherSuites[i]
Context(fmt.Sprintf("using %s", cipherSuiteName(cs.ID)), func() {
Context(fmt.Sprintf("using %s", qtls.CipherSuiteName(cs.ID)), func() {
getSealerAndOpener := func() (LongHeaderSealer, LongHeaderOpener) {
key := make([]byte, 16)
hpKey := make([]byte, 16)