blob: 765ee5e7944c1a1012db35259ebf7c1a4c8b3e12 [file] [log] [blame]
Damien Millerd4a8b7e1999-10-27 13:42:43 +10001/*
Damien Miller95def091999-11-25 00:26:21 +11002 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11003 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
Damien Miller4af51302000-04-16 11:18:38 +10005 *
Damien Millere4340be2000-09-16 13:29:08 +11006 * 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".
Damien Miller95def091999-11-25 00:26:21 +110011 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100012
Ben Lindstrom16ae3d02001-07-04 04:02:36 +000013/* RCSID("$OpenBSD: bufaux.h,v 1.12 2001/06/26 06:32:48 itojun Exp $"); */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100014
15#ifndef BUFAUX_H
16#define BUFAUX_H
17
18#include "buffer.h"
Ben Lindstrom226cfa02001-01-22 05:34:40 +000019#include <openssl/bn.h>
Damien Millerd4a8b7e1999-10-27 13:42:43 +100020
Damien Miller5428f641999-11-25 11:54:57 +110021/*
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 */
Ben Lindstrom16ae3d02001-07-04 04:02:36 +000025void buffer_put_bignum(Buffer *, BIGNUM *);
26void buffer_put_bignum2(Buffer *, BIGNUM *);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100027
28/* Retrieves an BIGNUM from the buffer. */
Ben Lindstrom16ae3d02001-07-04 04:02:36 +000029int buffer_get_bignum(Buffer *, BIGNUM *);
30int buffer_get_bignum2(Buffer *, BIGNUM *);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100031
32/* Returns an integer from the buffer (4 bytes, msb first). */
Ben Lindstrom16ae3d02001-07-04 04:02:36 +000033u_int buffer_get_int(Buffer *);
Ben Lindstrom16a86be2001-01-23 16:26:52 +000034#ifdef HAVE_U_INT64_T
Ben Lindstrom16ae3d02001-07-04 04:02:36 +000035u_int64_t buffer_get_int64(Buffer *);
Ben Lindstrom16a86be2001-01-23 16:26:52 +000036#endif
Damien Millerd4a8b7e1999-10-27 13:42:43 +100037
38/* Stores an integer in the buffer in 4 bytes, msb first. */
Ben Lindstrom16ae3d02001-07-04 04:02:36 +000039void buffer_put_int(Buffer *, u_int);
Ben Lindstrom16a86be2001-01-23 16:26:52 +000040#ifdef HAVE_U_INT64_T
Ben Lindstrom16ae3d02001-07-04 04:02:36 +000041void buffer_put_int64(Buffer *, u_int64_t);
Ben Lindstrom16a86be2001-01-23 16:26:52 +000042#endif
Damien Millerd4a8b7e1999-10-27 13:42:43 +100043
44/* Returns a character from the buffer (0 - 255). */
Ben Lindstrom16ae3d02001-07-04 04:02:36 +000045int buffer_get_char(Buffer *);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100046
47/* Stores a character in the buffer. */
Ben Lindstrom16ae3d02001-07-04 04:02:36 +000048void buffer_put_char(Buffer *, int);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100049
Damien Miller5428f641999-11-25 11:54:57 +110050/*
51 * Returns an arbitrary binary string from the buffer. The string cannot be
52 * longer than 256k. The returned value points to memory allocated with
53 * xmalloc; it is the responsibility of the calling function to free the
54 * data. If length_ptr is non-NULL, the length of the returned data will be
55 * stored there. A null character will be automatically appended to the
56 * returned string, and is not counted in length.
57 */
Ben Lindstrom16ae3d02001-07-04 04:02:36 +000058char *buffer_get_string(Buffer *, u_int *);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100059
60/* Stores and arbitrary binary string in the buffer. */
Ben Lindstrom16ae3d02001-07-04 04:02:36 +000061void buffer_put_string(Buffer *, const void *, u_int);
62void buffer_put_cstring(Buffer *, const char *);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100063
Damien Miller95def091999-11-25 00:26:21 +110064#endif /* BUFAUX_H */