Module Cipher_stream.ARC4

Alleged Rivest Cipher 4.

type key
type result = {
message : Cstruct.t;
key : key;
}
val of_secret : Cstruct.t -> key
val encrypt : key:key -> Cstruct.t -> result
val decrypt : key:key -> Cstruct.t -> result