Add primitives.mli

This commit is contained in:
Reynir Björnsson 2018-09-07 11:59:52 +02:00
parent cc12de37f7
commit c3515a6fab

4
twofish/primitives.mli Normal file
View file

@ -0,0 +1,4 @@
type ctx
val init : string -> ctx
val encrypt : ctx -> string -> string
val decrypt : ctx -> string -> string