]> andersk Git - openssh.git/blame - openbsd-compat/base64.h
- djm@cvs.openbsd.org 2010/01/30 02:54:53
[openssh.git] / openbsd-compat / base64.h
CommitLineData
0b202697 1/* $Id$ */
2
2274ae66 3/*
4 * Copyright (c) 1996 by Internet Software Consortium.
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 INTERNET SOFTWARE CONSORTIUM DISCLAIMS
11 * ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES
12 * OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL INTERNET SOFTWARE
13 * CONSORTIUM BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
14 * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
15 * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS
16 * ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
17 * SOFTWARE.
18 */
19
20/*
21 * Portions Copyright (c) 1995 by International Business Machines, Inc.
22 *
23 * International Business Machines, Inc. (hereinafter called IBM) grants
24 * permission under its copyrights to use, copy, modify, and distribute this
25 * Software with or without fee, provided that the above copyright notice and
26 * all paragraphs of this notice appear in all copies, and that the name of IBM
27 * not be used in connection with the marketing of any product incorporating
28 * the Software or modifications thereof, without specific, written prior
29 * permission.
30 *
31 * To the extent it has a right to do so, IBM grants an immunity from suit
32 * under its patents, if any, for the use, sale or manufacture of products to
33 * the extent that such products are used for performing Domain Name System
34 * dynamic updates in TCP/IP networks by means of the Software. No immunity is
35 * granted for any product per se or for any other function of any product.
36 *
37 * THE SOFTWARE IS PROVIDED "AS IS", AND IBM DISCLAIMS ALL WARRANTIES,
38 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
39 * PARTICULAR PURPOSE. IN NO EVENT SHALL IBM BE LIABLE FOR ANY SPECIAL,
40 * DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER ARISING
41 * OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE, EVEN
42 * IF IBM IS APPRISED OF THE POSSIBILITY OF SUCH DAMAGES.
43 */
44
1d1ffb87 45#ifndef _BSD_BASE64_H
46#define _BSD_BASE64_H
47
2274ae66 48#include "includes.h"
1d1ffb87 49
50#ifndef HAVE___B64_NTOP
eba02c94 51# ifndef HAVE_B64_NTOP
1d1ffb87 52int b64_ntop(u_char const *src, size_t srclength, char *target,
53 size_t targsize);
eba02c94 54# endif /* !HAVE_B64_NTOP */
2d2e4a34 55# define __b64_ntop(a,b,c,d) b64_ntop(a,b,c,d)
1d1ffb87 56#endif /* HAVE___B64_NTOP */
57
19160674 58#ifndef HAVE___B64_PTON
59# ifndef HAVE_B64_PTON
60int b64_pton(char const *src, u_char *target, size_t targsize);
61# endif /* !HAVE_B64_PTON */
2d2e4a34 62# define __b64_pton(a,b,c) b64_pton(a,b,c)
19160674 63#endif /* HAVE___B64_PTON */
64
12e8eb8d 65#endif /* _BSD_BASE64_H */
This page took 1.008571 seconds and 5 git commands to generate.