mirror of
https://github.com/SagerNet/sing-shadowsocks.git
synced 2025-04-03 03:47:40 +03:00
Fix AEAD multi-user service not working with packet
This commit is contained in:
parent
a9d165b21b
commit
e3930e4fe3
1 changed files with 3 additions and 1 deletions
|
@ -159,6 +159,7 @@ func (s *MultiService[U]) newPacket(ctx context.Context, conn N.PacketConn, buff
|
|||
}
|
||||
var readCipher cipher.AEAD
|
||||
var err error
|
||||
decrypted := make([]byte, 0, buffer.Len())
|
||||
for u, m := range s.methodMap {
|
||||
key := buf.NewSize(m.keySaltLength)
|
||||
Kdf(m.key, buffer.To(m.keySaltLength), key)
|
||||
|
@ -168,13 +169,14 @@ func (s *MultiService[U]) newPacket(ctx context.Context, conn N.PacketConn, buff
|
|||
return err
|
||||
}
|
||||
var packet []byte
|
||||
packet, err = readCipher.Open(buffer.Index(m.keySaltLength), rw.ZeroBytes[:readCipher.NonceSize()], buffer.From(m.keySaltLength), nil)
|
||||
packet, err = readCipher.Open(decrypted, rw.ZeroBytes[:readCipher.NonceSize()], buffer.From(m.keySaltLength), nil)
|
||||
if err != nil {
|
||||
continue
|
||||
}
|
||||
|
||||
buffer.Advance(m.keySaltLength)
|
||||
buffer.Truncate(len(packet))
|
||||
copy(buffer.Bytes(), packet)
|
||||
|
||||
user, method = u, m
|
||||
break
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue