HomeSort by relevance Sort by last modified time
    Searched defs:xorKeyStream (Results 1 - 2 of 2) sorted by null

  /prebuilts/go/darwin-x86/src/crypto/rc4/
rc4_asm.go 9 func xorKeyStream(dst, src *byte, n int, state *[256]uint32, i, j *uint8)
11 // XORKeyStream sets dst to the result of XORing src with the key stream.
13 func (c *Cipher) XORKeyStream(dst, src []byte) {
19 xorKeyStream(&dst[0], &src[0], len(src), &c.s, &c.i, &c.j)
  /prebuilts/go/linux-x86/src/crypto/rc4/
rc4_asm.go 9 func xorKeyStream(dst, src *byte, n int, state *[256]uint32, i, j *uint8)
11 // XORKeyStream sets dst to the result of XORing src with the key stream.
13 func (c *Cipher) XORKeyStream(dst, src []byte) {
19 xorKeyStream(&dst[0], &src[0], len(src), &c.s, &c.i, &c.j)

Completed in 65 milliseconds