mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
30 lines
706 B
Go
30 lines
706 B
Go
package handshake
|
|
|
|
import (
|
|
"time"
|
|
|
|
"github.com/lucas-clemente/quic-go/crypto"
|
|
"github.com/lucas-clemente/quic-go/internal/protocol"
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
var _ = Describe("Ephermal KEX", func() {
|
|
It("has a consistent KEX", func() {
|
|
kex1 := getEphermalKEX()
|
|
Expect(kex1).ToNot(BeNil())
|
|
kex2 := getEphermalKEX()
|
|
Expect(kex2).ToNot(BeNil())
|
|
Expect(kex1).To(Equal(kex2))
|
|
})
|
|
|
|
It("changes KEX", func() {
|
|
kexLifetime = time.Millisecond
|
|
defer func() {
|
|
kexLifetime = protocol.EphermalKeyLifetime
|
|
}()
|
|
kex := getEphermalKEX()
|
|
Expect(kex).ToNot(BeNil())
|
|
Eventually(func() crypto.KeyExchange { return getEphermalKEX() }).ShouldNot(Equal(kex))
|
|
})
|
|
})
|