OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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) {
17
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) {
17
xorKeyStream
(&dst[0], &src[0], len(src), &c.s, &c.i, &c.j)
Completed in 55 milliseconds