1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-09 17:30:44 +00:00

Compatibility change for go 1.18

This commit is contained in:
MoetaYuko 2023-02-10 10:44:46 +08:00 committed by Shelikhoo
parent 179cd1d62f
commit 0dcf8cad0d
No known key found for this signature in database
GPG Key ID: C4D5E79D22B25316
2 changed files with 20 additions and 2 deletions

View File

@ -0,0 +1,18 @@
//go:build go1.18 && !go1.19
package quic
import (
"crypto/cipher"
"github.com/quic-go/qtls-go1-18"
)
type (
// A CipherSuiteTLS13 is a cipher suite for TLS 1.3
CipherSuiteTLS13 = qtls.CipherSuiteTLS13
)
func AEADAESGCMTLS13(key, fixedNonce []byte) cipher.AEAD {
return qtls.AEADAESGCMTLS13(key, fixedNonce)
}

4
go.mod
View File

@ -1,6 +1,6 @@
module github.com/v2fly/v2ray-core/v5
go 1.19
go 1.18
require (
github.com/adrg/xdg v0.4.0
@ -16,6 +16,7 @@ require (
github.com/mustafaturan/bus v1.0.2
github.com/pelletier/go-toml v1.9.5
github.com/pires/go-proxyproto v0.6.2
github.com/quic-go/qtls-go1-18 v0.2.0
github.com/quic-go/qtls-go1-19 v0.2.1
github.com/quic-go/qtls-go1-20 v0.1.1
github.com/quic-go/quic-go v0.32.0
@ -65,7 +66,6 @@ require (
github.com/pion/udp v0.1.4 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/quic-go/qtls-go1-18 v0.2.0 // indirect
github.com/riobard/go-bloom v0.0.0-20200614022211-cdc8013cb5b3 // indirect
github.com/secure-io/siv-go v0.0.0-20180922214919-5ff40651e2c4 // indirect
github.com/xtaci/smux v1.5.15 // indirect