Plan 9 from Bell Labs’s /usr/web/sources/contrib/lucio/asn1/pem/b64.h

Copyright © 2021 Plan 9 Foundation.
Distributed under the MIT License.
Download the Plan 9 distribution.


/*
**	@(#) 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);

Bell Labs OSI certified Powered by Plan 9

(Return to Plan 9 Home Page)

Copyright © 2021 Plan 9 Foundation. All Rights Reserved.
Comments to webmaster@9p.io.