mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
parent
a4cdc97fb1
commit
7609246b45
5 changed files with 16 additions and 4 deletions
|
@ -11,7 +11,7 @@ This is very much an incomplete, buggy, unperformant and insecure work in progre
|
||||||
|
|
||||||
Done:
|
Done:
|
||||||
|
|
||||||
- Basic protocol with support for QUIC version 31 and 32
|
- Basic protocol with support for QUIC version 30, 31 and 32
|
||||||
- HTTP/2 support
|
- HTTP/2 support
|
||||||
- Crypto (RSA for signing, curve25519 for KEX, chacha20-poly1305 as cipher)
|
- Crypto (RSA for signing, curve25519 for KEX, chacha20-poly1305 as cipher)
|
||||||
- Basic loss detection (currently only fast retransmission) & retransmission
|
- Basic loss detection (currently only fast retransmission) & retransmission
|
||||||
|
|
|
@ -165,7 +165,12 @@ func (h *CryptoSetup) isInchoateCHLO(cryptoData map[Tag][]byte) bool {
|
||||||
}
|
}
|
||||||
|
|
||||||
func (h *CryptoSetup) handleInchoateCHLO(sni string, data []byte) ([]byte, error) {
|
func (h *CryptoSetup) handleInchoateCHLO(sni string, data []byte) ([]byte, error) {
|
||||||
proof, err := h.scfg.Sign(sni, data)
|
var chloOrNil []byte
|
||||||
|
if h.version > protocol.VersionNumber(30) {
|
||||||
|
chloOrNil = data
|
||||||
|
}
|
||||||
|
|
||||||
|
proof, err := h.scfg.Sign(sni, chloOrNil)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
|
@ -133,6 +133,13 @@ var _ = Describe("Crypto setup", func() {
|
||||||
Expect(signer.gotCHLO).To(BeTrue())
|
Expect(signer.gotCHLO).To(BeTrue())
|
||||||
})
|
})
|
||||||
|
|
||||||
|
It("generates REJ messages for version 30", func() {
|
||||||
|
cs.version = protocol.VersionNumber(30)
|
||||||
|
_, err := cs.handleInchoateCHLO("", sampleCHLO)
|
||||||
|
Expect(err).ToNot(HaveOccurred())
|
||||||
|
Expect(signer.gotCHLO).To(BeFalse())
|
||||||
|
})
|
||||||
|
|
||||||
It("generates SHLO messages", func() {
|
It("generates SHLO messages", func() {
|
||||||
response, err := cs.handleCHLO("", []byte("chlo-data"), map[Tag][]byte{
|
response, err := cs.handleCHLO("", []byte("chlo-data"), map[Tag][]byte{
|
||||||
TagPUBS: []byte("pubs-c"),
|
TagPUBS: []byte("pubs-c"),
|
||||||
|
|
|
@ -11,7 +11,7 @@ type VersionNumber int
|
||||||
|
|
||||||
// SupportedVersions lists the versions that the server supports
|
// SupportedVersions lists the versions that the server supports
|
||||||
var SupportedVersions = []VersionNumber{
|
var SupportedVersions = []VersionNumber{
|
||||||
31, 32,
|
30, 31, 32,
|
||||||
}
|
}
|
||||||
|
|
||||||
// SupportedVersionsAsTags is needed for the SHLO crypto message
|
// SupportedVersionsAsTags is needed for the SHLO crypto message
|
||||||
|
|
|
@ -19,7 +19,7 @@ var _ = Describe("Version", func() {
|
||||||
})
|
})
|
||||||
|
|
||||||
It("has proper tag list", func() {
|
It("has proper tag list", func() {
|
||||||
Expect(protocol.SupportedVersionsAsTags).To(Equal([]byte("Q031Q032")))
|
Expect(protocol.SupportedVersionsAsTags).To(Equal([]byte("Q030Q031Q032")))
|
||||||
})
|
})
|
||||||
|
|
||||||
It("recognizes supported versions", func() {
|
It("recognizes supported versions", func() {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue