mirror of https://github.com/v2ray/v2ray-core
remove unnecessary function
parent
87b15b2b20
commit
075423972b
|
@ -44,7 +44,7 @@ func NewChaCha20Stream(key []byte, nonce []byte, rounds int) *ChaCha20Stream {
|
||||||
}
|
}
|
||||||
|
|
||||||
s.rounds = rounds
|
s.rounds = rounds
|
||||||
s.advance()
|
ChaCha20Block(&s.state, s.block[:], s.rounds)
|
||||||
return s
|
return s
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -72,14 +72,9 @@ func (s *ChaCha20Stream) XORKeyStream(dst, src []byte) {
|
||||||
s.offset = o
|
s.offset = o
|
||||||
|
|
||||||
if o == blockSize {
|
if o == blockSize {
|
||||||
s.advance()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func (s *ChaCha20Stream) advance() {
|
|
||||||
ChaCha20Block(&s.state, s.block[:], s.rounds)
|
|
||||||
|
|
||||||
s.offset = 0
|
s.offset = 0
|
||||||
s.state[12]++
|
s.state[12]++
|
||||||
|
ChaCha20Block(&s.state, s.block[:], s.rounds)
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue