Merged revisions 196716,196830,198094,198116,198502,198877,199007,199262,199319,19946...
[official-gcc.git] / main / libgo / go / crypto / rc4 / rc4_ref.go
blob13d52b95dd33c78a340000cda4eacfd7082cd2e6
1 // Copyright 2013 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
5 // +build !amd64,!arm,!386
7 package rc4
9 // XORKeyStream sets dst to the result of XORing src with the key stream.
10 // Dst and src may be the same slice but otherwise should not overlap.
11 func (c *Cipher) XORKeyStream(dst, src []byte) {
12 i, j := c.i, c.j
13 for k, v := range src {
14 i += 1
15 j += uint8(c.s[i])
16 c.s[i], c.s[j] = c.s[j], c.s[i]
17 dst[k] = v ^ byte(c.s[byte(c.s[i]+c.s[j])])
19 c.i, c.j = i, j