X-Git-Url: http://matita.cs.unibo.it/gitweb/?a=blobdiff_plain;f=helm%2FDEVEL%2Fpxp%2Fnetstring%2Fbase64.mli;fp=helm%2FDEVEL%2Fpxp%2Fnetstring%2Fbase64.mli;h=5dd60ea7533c5dacce79e6560edb5e997ebff532;hb=c03d2c1fdab8d228cb88aaba5ca0f556318bebc5;hp=0000000000000000000000000000000000000000;hpb=758057e85325f94cd88583feb1fdf6b038e35055;p=helm.git diff --git a/helm/DEVEL/pxp/netstring/base64.mli b/helm/DEVEL/pxp/netstring/base64.mli new file mode 100644 index 000000000..5dd60ea75 --- /dev/null +++ b/helm/DEVEL/pxp/netstring/base64.mli @@ -0,0 +1,36 @@ +(* $Id$ + * ---------------------------------------------------------------------- + * + *) + +(**********************************************************************) +(* Base64 compatibility module *) +(**********************************************************************) + +(* PLEASE DO NOT USE THIS MODULE IN NEW SOFTWARE! + * The module Netencoding.Base64 is the preferred API. This module is + * only for compatibility with older software. + *) + +(* This interface is compatible with all previously released Base64 + * modules (0.1 and 0.2). + *) + +val encode : string -> string + +val url_encode : string -> string + +val decode : string -> string + +(* ====================================================================== + * History: + * + * $Log$ + * Revision 1.1 2000/11/17 09:57:27 lpadovan + * Initial revision + * + * Revision 1.1 2000/03/02 01:15:20 gerd + * Initial revision. + * + * + *)