base64.c revision 2c9c7c5bb5975a18925c30aeb33a26094902f1c1
/*
* Copyright (C) 1998-2000 Internet Software Consortium.
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND INTERNET SOFTWARE CONSORTIUM
* DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL
* INTERNET SOFTWARE CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT,
* INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING
* FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
* NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
/* $Id: base64.c,v 1.19 2000/09/08 00:34:21 gson Exp $ */
#include <config.h>
#define RETERR(x) do { \
isc_result_t _r = (x); \
if (_r != ISC_R_SUCCESS) \
return (_r); \
} while (0)
/*
* sure where they should go. -- bwelling
*/
static isc_result_t
static isc_result_t
static isc_result_t
static const char base64[] =
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";
{
char buf[5];
unsigned int loops = 0;
if (wordlength < 4)
wordlength = 4;
loops++;
{
loops = 0;
}
}
}
return (ISC_R_SUCCESS);
}
/*
* State of a base64 decoding process in progress.
*/
typedef struct {
int length; /* Desired length of binary data or -1 */
int digits; /* Number of buffered base64 digits */
int val[4];
static inline void
{
}
static inline isc_result_t
char *s;
return (ISC_R_BADBASE64);
return (ISC_R_BADBASE64);
int n;
unsigned char buf[3];
return (ISC_R_BADBASE64);
return (ISC_R_BADBASE64);
if (n != 3) {
}
return (ISC_R_BADBASE64);
else
}
}
return (ISC_R_SUCCESS);
}
static inline isc_result_t
return (ISC_R_UNEXPECTEDEND);
return (ISC_R_BADBASE64);
return (ISC_R_SUCCESS);
}
unsigned int i;
if (length > 0)
ISC_FALSE));
else
ISC_TRUE));
break;
}
return (ISC_R_SUCCESS);
}
for (;;) {
int c = *cstr++;
if (c == '\0')
break;
if (c == ' ' || c == '\t' || c == '\n' || c== '\r')
continue;
}
return (ISC_R_SUCCESS);
}
static isc_result_t
unsigned int l;
return (ISC_R_NOSPACE);
isc_buffer_add(target, l);
return (ISC_R_SUCCESS);
}
static isc_result_t
return (ISC_R_NOSPACE);
return (ISC_R_SUCCESS);
}
static isc_result_t
{
if (expect == isc_tokentype_qstring)
else if (expect == isc_tokentype_number)
switch (result) {
case ISC_R_SUCCESS:
break;
case ISC_R_NOMEMORY:
return (ISC_R_NOMEMORY);
case ISC_R_NOSPACE:
return (ISC_R_NOSPACE);
default:
"isc_lex_gettoken() failed: %s",
return (ISC_R_UNEXPECTED);
}
return (ISC_R_SUCCESS);
return (ISC_R_SUCCESS);
return (ISC_R_UNEXPECTEDEND);
return (ISC_R_UNEXPECTEDTOKEN);
}
return (ISC_R_SUCCESS);
}