package rc4

Import Path
	crypto/rc4 (on golang.org and go.dev)

Dependency Relation
	imports 2 packages, and imported by one package

Involved Source Files
	d-> rc4.go

Exported Type Names

type Cipher (struct) A Cipher is an instance of RC4 using a particular key. (*T) Reset() (*T) XORKeyStream(dst, src []byte) *T : crypto/cipher.Stream func NewCipher(key []byte) (*Cipher, error)
type KeySizeError int (T) Error() string T : error
Exported Values
func NewCipher(key []byte) (*Cipher, error) NewCipher creates and returns a new Cipher. The key argument should be the RC4 key, at least 1 byte and at most 256 bytes.