refactor: use same rw key in client and server

This commit is contained in:
Mingye Chen 2025-03-04 18:35:33 -07:00
parent 0fcb3d2e45
commit cc09271794
2 changed files with 4 additions and 4 deletions

View file

@ -49,10 +49,10 @@ func main() {
// Simulate a chat session
hub := util.NewHub()
writeKey, err := hex.DecodeString("dc079246c2a46f42245546e02bf91ed7d0f3bca91e8b248445f9c39752b011e1")
readKey, err := hex.DecodeString("dc079246c2a46f42245546e02bf91ed7d0f3bca91e8b248445f9c39752b011e1")
util.Check(err)
readKey, err := hex.DecodeString("df58c54c3924b0d078377cfe41af7f116dca94e69e3bee6eb28460831bd92dca")
writeKey, err := hex.DecodeString("df58c54c3924b0d078377cfe41af7f116dca94e69e3bee6eb28460831bd92dca")
util.Check(err)
go func() {

View file

@ -700,8 +700,8 @@ func (s *baseServer) Oscur0Accept(remoteAddr net.Addr, oscur0Conf *Oscur0Config)
MaxDatagramFrameSize: 1200,
})
conn.(*connection).cryptoStreamHandler.SetReadKey(tls.QUICEncryptionLevelApplication, tls.TLS_CHACHA20_POLY1305_SHA256, oscur0Conf.ReadKey)
conn.(*connection).cryptoStreamHandler.SetWriteKey(tls.QUICEncryptionLevelApplication, tls.TLS_CHACHA20_POLY1305_SHA256, oscur0Conf.WriteKey)
conn.(*connection).cryptoStreamHandler.SetReadKey(tls.QUICEncryptionLevelApplication, tls.TLS_CHACHA20_POLY1305_SHA256, oscur0Conf.WriteKey)
conn.(*connection).cryptoStreamHandler.SetWriteKey(tls.QUICEncryptionLevelApplication, tls.TLS_CHACHA20_POLY1305_SHA256, oscur0Conf.ReadKey)
conn.(*connection).cryptoStreamHandler.HandshakeComplete()
conn.(*connection).handshakeComplete = true
conn.(*connection).handleHandshakeComplete()