]> andersk Git - gssapi-openssh.git/blame - openssh/openbsd-compat/base64.h
Import of OpenSSH 3.7p1
[gssapi-openssh.git] / openssh / openbsd-compat / base64.h
CommitLineData
3c0ef626 1/* $Id$ */
2
0fff78ff 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
3c0ef626 45#ifndef _BSD_BASE64_H
46#define _BSD_BASE64_H
47
0fff78ff 48#include "includes.h"
3c0ef626 49
50#ifndef HAVE___B64_NTOP
51# ifndef HAVE_B64_NTOP
52int b64_ntop(u_char const *src, size_t srclength, char *target,
53 size_t targsize);
3c0ef626 54# endif /* !HAVE_B64_NTOP */
0fff78ff 55# define __b64_ntop(a,b,c,d) b64_ntop(a,b,c,d)
3c0ef626 56#endif /* HAVE___B64_NTOP */
57
6a9b3198 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 */
0fff78ff 62# define __b64_pton(a,b,c) b64_pton(a,b,c)
6a9b3198 63#endif /* HAVE___B64_PTON */
64
e9a17296 65#endif /* _BSD_BASE64_H */
This page took 0.748048 seconds and 5 git commands to generate.