Correct PPTP server firewall rules chain.
[tomato/davidwu.git] / release / src / router / nettle / tools / output.h
blob65e153d15e4028ffa264777aee56d9182dfef715
1 /* output.h */
3 /* nettle, low-level cryptographics library
5 * Copyright (C) 2002, 2003 Niels Möller
6 *
7 * The nettle library is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU Lesser General Public License as published by
9 * the Free Software Foundation; either version 2.1 of the License, or (at your
10 * option) any later version.
12 * The nettle library is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
15 * License for more details.
17 * You should have received a copy of the GNU Lesser General Public License
18 * along with the nettle library; see the file COPYING.LIB. If not, write to
19 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
20 * MA 02111-1301, USA.
23 #ifndef NETTLE_TOOLS_OUTPUT_H_INCLUDED
24 #define NETTLE_TOOLS_OUTPUT_H_INCLUDED
26 #include "misc.h"
28 #include "base64.h"
29 #include "buffer.h"
30 #include "nettle-meta.h"
32 #include <stdio.h>
34 struct sexp_output
36 FILE *f;
38 unsigned line_width;
40 const struct nettle_armor *coding;
41 unsigned coding_indent;
43 int prefer_hex;
45 const struct nettle_hash *hash;
46 void *ctx;
48 /* NOTE: There's no context for hex encoding, the state argument to
49 encode_update is ignored */
50 struct base64_decode_ctx base64;
52 unsigned pos;
53 int soft_newline;
56 void
57 sexp_output_init(struct sexp_output *output, FILE *f,
58 unsigned width, int prefer_hex);
60 void
61 sexp_output_hash_init(struct sexp_output *output,
62 const struct nettle_hash *hash, void *ctx);
64 void
65 sexp_put_newline(struct sexp_output *output,
66 unsigned indent);
68 void
69 sexp_put_soft_newline(struct sexp_output *output,
70 unsigned indent);
72 void
73 sexp_put_char(struct sexp_output *output, uint8_t c);
75 void
76 sexp_put_data(struct sexp_output *output,
77 unsigned length, const uint8_t *data);
79 void
80 sexp_put_code_start(struct sexp_output *output,
81 const struct nettle_armor *coding);
83 void
84 sexp_put_code_end(struct sexp_output *output);
86 void
87 sexp_put_string(struct sexp_output *output, enum sexp_mode mode,
88 struct nettle_buffer *string);
90 void
91 sexp_put_digest(struct sexp_output *output);
93 #endif /* NETTLE_TOOLS_OUTPUT_H_INCLUDED */