File: base64.mli

package info (click to toggle)
netstring 0.10.1-3
  • links: PTS
  • area: main
  • in suites: woody
  • size: 1,000 kB
  • ctags: 895
  • sloc: ml: 8,389; xml: 416; makefile: 188; sh: 103
file content (33 lines) | stat: -rw-r--r-- 916 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
(* $Id: base64.mli,v 1.1 2000/03/02 01:15:20 gerd Exp $
 * ----------------------------------------------------------------------
 *
 *)

(**********************************************************************)
(* 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: base64.mli,v $
 * Revision 1.1  2000/03/02 01:15:20  gerd
 * 	Initial revision.
 *
 * 
 *)