Add primitives.mli

This commit is contained in:
Reynir Björnsson 2018-09-07 11:59:52 +02:00
parent cc12de37f7
commit c3515a6fab
1 changed files with 4 additions and 0 deletions

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