ocaml-passwordsafe/twofish/cbc.mli
Reynir Björnsson 158c857320 Initial import of twofish bits from opws
The code has been slimmed down somewhat.
2018-09-07 11:52:05 +02:00

9 lines
207 B
OCaml

type state =
{
mutable prev_v: string;
}
val init : string -> state
val encrypt : state -> (string -> string) -> string -> string
val decrypt : state -> (string -> string) -> string -> string