mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-06 21:57:36 +03:00
remove the params negotiator
This commit is contained in:
parent
925a52f032
commit
f3e9bf4332
37 changed files with 1013 additions and 1296 deletions
|
@ -33,16 +33,19 @@ func mockKeyDerivation(crypto.MintController, protocol.Perspective) (crypto.AEAD
|
|||
var _ = Describe("TLS Crypto Setup", func() {
|
||||
var (
|
||||
cs *cryptoSetupTLS
|
||||
paramsChan chan TransportParameters
|
||||
aeadChanged chan protocol.EncryptionLevel
|
||||
|
||||
mintControllerConstructor = newMintController
|
||||
)
|
||||
|
||||
BeforeEach(func() {
|
||||
paramsChan = make(chan TransportParameters)
|
||||
aeadChanged = make(chan protocol.EncryptionLevel, 2)
|
||||
csInt, _, err := NewCryptoSetupTLSServer(
|
||||
csInt, err := NewCryptoSetupTLSServer(
|
||||
testdata.GetTLSConfig(),
|
||||
&TransportParameters{},
|
||||
paramsChan,
|
||||
aeadChanged,
|
||||
nil,
|
||||
protocol.VersionTLS,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue