Merge from vendor branch BINUTILS:
[dragonfly.git] / contrib / bind-9.2.4rc7 / lib / isccc / base64.c
1 /*
2  * Portions Copyright (C) 2004  Internet Systems Consortium, Inc. ("ISC")
3  * Portions Copyright (C) 2001  Internet Software Consortium.
4  * Portions Copyright (C) 2001  Nominum, Inc.
5  *
6  * Permission to use, copy, modify, and distribute this software for any
7  * purpose with or without fee is hereby granted, provided that the above
8  * copyright notice and this permission notice appear in all copies.
9  *
10  * THE SOFTWARE IS PROVIDED "AS IS" AND ISC AND NOMINUM DISCLAIMS ALL
11  * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
12  * OF MERCHANTABILITY AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY
13  * SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
14  * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
15  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
16  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
17  */
18
19 /* $Id: base64.c,v 1.2.2.1 2004/03/09 06:12:25 marka Exp $ */
20
21 #include <config.h>
22
23 #include <isc/base64.h>
24 #include <isc/buffer.h>
25 #include <isc/region.h>
26 #include <isc/result.h>
27
28 #include <isccc/base64.h>
29 #include <isccc/result.h>
30 #include <isccc/util.h>
31
32 isc_result_t
33 isccc_base64_encode(isccc_region_t *source, int wordlength,
34                   const char *wordbreak, isccc_region_t *target)
35 {
36         isc_region_t sr;
37         isc_buffer_t tb;
38         isc_result_t result;
39
40         sr.base = source->rstart;
41         sr.length = source->rend - source->rstart;
42         isc_buffer_init(&tb, target->rstart, target->rend - target->rstart);
43
44         result = isc_base64_totext(&sr, wordlength, wordbreak, &tb);
45         if (result != ISC_R_SUCCESS)
46                 return (result);
47         source->rstart = source->rend;
48         target->rstart = isc_buffer_used(&tb);
49         return (ISC_R_SUCCESS);
50 }
51
52 isc_result_t
53 isccc_base64_decode(const char *cstr, isccc_region_t *target) {
54         isc_buffer_t b;
55         isc_result_t result;
56
57         isc_buffer_init(&b, target->rstart, target->rend - target->rstart);
58         result = isc_base64_decodestring(cstr, &b);
59         if (result != ISC_R_SUCCESS)
60                 return (result);
61         target->rstart = isc_buffer_used(&b);
62         return (ISC_R_SUCCESS);
63 }