mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 12:47:36 +03:00
15 lines
472 B
Go
15 lines
472 B
Go
package protocol
|
|
|
|
import (
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
var _ = Describe("Encryption Level", func() {
|
|
It("has the correct string representation", func() {
|
|
Expect(EncryptionUnspecified.String()).To(Equal("unknown"))
|
|
Expect(EncryptionUnencrypted.String()).To(Equal("unencrypted"))
|
|
Expect(EncryptionSecure.String()).To(Equal("encrypted (not forward-secure)"))
|
|
Expect(EncryptionForwardSecure.String()).To(Equal("forward-secure"))
|
|
})
|
|
})
|