]> matita.cs.unibo.it Git - helm.git/blob - helm/DEVEL/pxp/netstring/base64.mli
Initial revision
[helm.git] / helm / DEVEL / pxp / netstring / base64.mli
1 (* $Id$
2  * ----------------------------------------------------------------------
3  *
4  *)
5
6 (**********************************************************************)
7 (* Base64 compatibility module                                        *)
8 (**********************************************************************)
9
10 (* PLEASE DO NOT USE THIS MODULE IN NEW SOFTWARE!
11  * The module Netencoding.Base64 is the preferred API. This module is
12  * only for compatibility with older software.
13  *)
14
15 (* This interface is compatible with all previously released Base64
16  * modules (0.1 and 0.2).
17  *)
18
19 val encode : string -> string
20
21 val url_encode : string -> string
22
23 val decode : string -> string
24
25 (* ======================================================================
26  * History:
27  * 
28  * $Log$
29  * Revision 1.1  2000/11/17 09:57:27  lpadovan
30  * Initial revision
31  *
32  * Revision 1.1  2000/03/02 01:15:20  gerd
33  *      Initial revision.
34  *
35  * 
36  *)