Fix shadowsocks OTA issue

pull/103/head
v2ray 9 years ago
parent 3d4da5822b
commit e298121126

@ -37,8 +37,8 @@ func (this *Authenticator) Authenticate(auth []byte, data []byte) []byte {
func HeaderKeyGenerator(key []byte, iv []byte) func() []byte { func HeaderKeyGenerator(key []byte, iv []byte) func() []byte {
return func() []byte { return func() []byte {
newKey := make([]byte, 0, len(key)+len(iv)) newKey := make([]byte, 0, len(key)+len(iv))
newKey = append(newKey, key...)
newKey = append(newKey, iv...) newKey = append(newKey, iv...)
newKey = append(newKey, key...)
return newKey return newKey
} }
} }

Loading…
Cancel
Save