1 /* From Kerberos, krb4-1.0.3 */
3 * Copyright (c) 1995 - 1999 Kungliga Tekniska HÅ¡gskolan
4 * (Royal Institute of Technology, Stockholm, Sweden).
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
11 * 1. Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 * notice, this list of conditions and the following disclaimer in the
16 * documentation and/or other materials provided with the distribution.
18 * 3. Neither the name of the Institute nor the names of its contributors
19 * may be used to endorse or promote products derived from this software
20 * without specific prior written permission.
22 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
23 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
37 RCSID("$Id: base64.c,v 1.4 1999/12/02 16:58:45 joda Exp $");
44 static char base64
[] = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
46 static int pos(char c
)
49 for(p
= base64
; *p
; p
++)
55 int base64_encode(const void *data
, int size
, char **str
)
60 const unsigned char *q
;
62 p
= s
= (char*)malloc(size
*4/3+4);
65 q
= (const unsigned char*)data
;
67 for(i
= 0; i
< size
;){
77 p
[0]=base64
[(c
&0x00fc0000) >> 18];
78 p
[1]=base64
[(c
&0x0003f000) >> 12];
79 p
[2]=base64
[(c
&0x00000fc0) >> 6];
80 p
[3]=base64
[(c
&0x0000003f) >> 0];
92 int base64_decode(const char *str
, void *data
)
99 q
=(unsigned char*)data
;
100 for(p
=str
; *p
&& !done
; p
+=4){
114 fprintf(stderr
, "base64_decode: bad character '%c' (%.2x)\n",
127 fprintf(stderr
, "base64_decode: bad character '%c' (%.2x)\n",
138 fprintf(stderr
, "base64_decode: done, '%c' (%.2x)\n",
149 *q
++=(c
&0x00ff0000)>>16;
152 *q
++=(c
&0x0000ff00)>>8;
154 *q
++=(c
&0x000000ff)>>0;
156 return q
- (unsigned char*)data
;