]> andersk Git - openssh.git/blame - bufaux.h
20010124
[openssh.git] / bufaux.h
CommitLineData
8efc0c15 1/*
5260325f 2 * Author: Tatu Ylonen <ylo@cs.hut.fi>
5260325f 3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
6ae2364d 5 *
bcbf86ec 6 * As far as I am concerned, the code I have written for this software
7 * can be used freely for any purpose. Any derived versions of this
8 * software must be clearly marked as such, and if the derived work is
9 * incompatible with the protocol description in the RFC file, it must be
10 * called by a name other than "ssh" or "Secure Shell".
5260325f 11 */
8efc0c15 12
42f11eb2 13/* RCSID("$OpenBSD: bufaux.h,v 1.11 2001/01/21 19:05:45 markus Exp $"); */
8efc0c15 14
15#ifndef BUFAUX_H
16#define BUFAUX_H
17
18#include "buffer.h"
42f11eb2 19#include <openssl/bn.h>
8efc0c15 20
aa3378df 21/*
22 * Stores an BIGNUM in the buffer with a 2-byte msb first bit count, followed
23 * by (bits+7)/8 bytes of binary data, msb first.
24 */
5260325f 25void buffer_put_bignum(Buffer * buffer, BIGNUM * value);
7368a6c8 26void buffer_put_bignum2(Buffer * buffer, BIGNUM * value);
8efc0c15 27
28/* Retrieves an BIGNUM from the buffer. */
5260325f 29int buffer_get_bignum(Buffer * buffer, BIGNUM * value);
7368a6c8 30int buffer_get_bignum2(Buffer *buffer, BIGNUM * value);
8efc0c15 31
32/* Returns an integer from the buffer (4 bytes, msb first). */
1e3b8b07 33u_int buffer_get_int(Buffer * buffer);
f546c780 34u_int64_t buffer_get_int64(Buffer *buffer);
8efc0c15 35
36/* Stores an integer in the buffer in 4 bytes, msb first. */
1e3b8b07 37void buffer_put_int(Buffer * buffer, u_int value);
f546c780 38void buffer_put_int64(Buffer *buffer, u_int64_t value);
8efc0c15 39
40/* Returns a character from the buffer (0 - 255). */
5260325f 41int buffer_get_char(Buffer * buffer);
8efc0c15 42
43/* Stores a character in the buffer. */
5260325f 44void buffer_put_char(Buffer * buffer, int value);
8efc0c15 45
aa3378df 46/*
47 * Returns an arbitrary binary string from the buffer. The string cannot be
48 * longer than 256k. The returned value points to memory allocated with
49 * xmalloc; it is the responsibility of the calling function to free the
50 * data. If length_ptr is non-NULL, the length of the returned data will be
51 * stored there. A null character will be automatically appended to the
52 * returned string, and is not counted in length.
53 */
1e3b8b07 54char *buffer_get_string(Buffer * buffer, u_int *length_ptr);
8efc0c15 55
56/* Stores and arbitrary binary string in the buffer. */
1e3b8b07 57void buffer_put_string(Buffer * buffer, const void *buf, u_int len);
7368a6c8 58void buffer_put_cstring(Buffer *buffer, const char *s);
8efc0c15 59
5260325f 60#endif /* BUFAUX_H */
This page took 0.226264 seconds and 5 git commands to generate.