github.com/c9s/go@v0.0.0-20180120015821-984e81f64e0c/src/crypto/rc4/rc4_ref.go (about) 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. 4 5 // +build !amd64,!amd64p32,!arm,!386 arm,nacl 6 7 package rc4 8 9 // XORKeyStream sets dst to the result of XORing src with the key stream. 10 // Dst and src must overlap entirely or not at all. 11 func (c *Cipher) XORKeyStream(dst, src []byte) { 12 c.xorKeyStreamGeneric(dst, src) 13 }