~npalix/coccinelle/upstream

« back to all changes in this revision

Viewing changes to bundles/stdcompat/stdcompat-current/interfaces/4.06/digest.mli

  • Committer: Thierry Martinez
  • Date: 2019-08-20 13:37:04 UTC
  • Revision ID: git-v1:0214afad4a32c95349c2c5a38e37cea407c455d0
Update bundles

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
type t = string
 
2
val compare : t -> t -> int
 
3
val equal : t -> t -> bool
 
4
val string : string -> t
 
5
val bytes : bytes -> t
 
6
val substring : string -> int -> int -> t
 
7
val subbytes : bytes -> int -> int -> t
 
8
external channel : in_channel -> int -> t = "caml_md5_chan"
 
9
val file : string -> t
 
10
val output : out_channel -> t -> unit
 
11
val input : in_channel -> t
 
12
val to_hex : t -> string
 
13
val from_hex : string -> t