1995-10-17 03:01:45 -07:00
|
|
|
(***********************************************************************)
|
|
|
|
(* *)
|
1996-04-30 07:53:58 -07:00
|
|
|
(* Objective Caml *)
|
1995-10-17 03:01:45 -07:00
|
|
|
(* *)
|
|
|
|
(* Xavier Leroy, projet Cristal, INRIA Rocquencourt *)
|
|
|
|
(* *)
|
1996-04-30 07:53:58 -07:00
|
|
|
(* Copyright 1996 Institut National de Recherche en Informatique et *)
|
1999-11-17 10:59:06 -08:00
|
|
|
(* en Automatique. All rights reserved. This file is distributed *)
|
2001-12-07 05:41:02 -08:00
|
|
|
(* under the terms of the GNU Library General Public License, with *)
|
|
|
|
(* the special exception on linking described in file ../LICENSE. *)
|
1995-10-17 03:01:45 -07:00
|
|
|
(* *)
|
|
|
|
(***********************************************************************)
|
|
|
|
|
1999-11-17 11:25:38 -08:00
|
|
|
(* $Id$ *)
|
1995-10-17 03:01:45 -07:00
|
|
|
|
2001-10-26 15:37:14 -07:00
|
|
|
(** MD5 message digest.
|
1995-10-17 03:01:45 -07:00
|
|
|
|
2001-10-26 15:37:14 -07:00
|
|
|
This module provides functions to compute 128-bit ``digests'' of
|
1998-04-27 02:55:50 -07:00
|
|
|
arbitrary-length strings or files. The digests are of cryptographic
|
1995-11-15 08:40:44 -08:00
|
|
|
quality: it is very hard, given a digest, to forge a string having
|
2001-10-26 15:37:14 -07:00
|
|
|
that digest. The algorithm used is MD5.
|
|
|
|
*)
|
1995-10-17 03:01:45 -07:00
|
|
|
|
|
|
|
type t = string
|
2001-12-03 14:01:28 -08:00
|
|
|
(** The type of digests: 16-character strings. *)
|
2001-10-26 15:37:14 -07:00
|
|
|
|
2001-12-03 14:01:28 -08:00
|
|
|
val string : string -> t
|
2001-10-26 15:37:14 -07:00
|
|
|
(** Return the digest of the given string. *)
|
|
|
|
|
2001-12-03 14:01:28 -08:00
|
|
|
val substring : string -> int -> int -> t
|
2001-10-26 15:37:14 -07:00
|
|
|
(** [Digest.substring s ofs len] returns the digest of the substring
|
|
|
|
of [s] starting at character number [ofs] and containing [len]
|
|
|
|
characters. *)
|
|
|
|
|
2001-12-03 14:01:28 -08:00
|
|
|
external channel : in_channel -> int -> t = "md5_chan"
|
2001-10-26 15:37:14 -07:00
|
|
|
(** [Digest.channel ic len] reads [len] characters from channel [ic]
|
|
|
|
and returns their digest. *)
|
|
|
|
|
2001-12-03 14:01:28 -08:00
|
|
|
val file : string -> t
|
2001-10-26 15:37:14 -07:00
|
|
|
(** Return the digest of the file whose name is given. *)
|
|
|
|
|
2001-12-03 14:01:28 -08:00
|
|
|
val output : out_channel -> t -> unit
|
2001-10-26 15:37:14 -07:00
|
|
|
(** Write a digest on the given output channel. *)
|
|
|
|
|
2001-12-03 14:01:28 -08:00
|
|
|
val input : in_channel -> t
|
2001-10-26 15:37:14 -07:00
|
|
|
(** Read a digest from the given input channel. *)
|
|
|
|
|