| 
/*
**	@(#) B64.h - Definitions for ASCII-64 encoding and decoding
**	@(#) $Id: b64.h,v 1.1 2003/11/24 17:45:27 lucio Exp $
*/
/*
** ==================================================================
**
**      $Logfile:$
**      $RCSfile: b64.h,v $
**      $Revision: 1.1 $
**      $Date: 2003/11/24 17:45:27 $
**      $Author: lucio $
**
** ==================================================================
**
**      $Log: b64.h,v $
**      Revision 1.1  2003/11/24 17:45:27  lucio
**      Checkpoint after some progress
**
**      Revision 1.1.1.1  2003/11/10 10:34:31  lucio
**      ASN.1 developments.
**
** ==================================================================
*/
/* Encoding: start/end, zero-terminated, fixed count */
long eb64e (uchar *t, uchar *te, char *s);
long eb64 (char *t, char *s);
long eb64n (uchar *t, int n, char *s);
long feb64n (char *fmt, uchar *t, long sz, int w);
/* Decoding: start/end, zero-terminated, fixed count */
long db64e (char *s, char *se, uchar *t);
long db64 (char *s, uchar *t);
long db64n (char *s, int n, uchar *t);
long db64v (uchar *t, char *s);
 |