blob: 521ddf135caadc5c724a587c11dc012f55e93a60 [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
Damien Miller5a6b4fe2001-12-21 14:56:54 +110013/* RCSID("$OpenBSD: bufaux.h,v 1.14 2001/12/19 17:16:13 stevesk 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
Ben Lindstrom16ae3d02001-07-04 04:02:36 +000021void buffer_put_bignum(Buffer *, BIGNUM *);
22void buffer_put_bignum2(Buffer *, BIGNUM *);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100023
Ben Lindstrom16ae3d02001-07-04 04:02:36 +000024int buffer_get_bignum(Buffer *, BIGNUM *);
25int buffer_get_bignum2(Buffer *, BIGNUM *);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100026
Ben Lindstrom16ae3d02001-07-04 04:02:36 +000027u_int buffer_get_int(Buffer *);
Ben Lindstrom4cc240d2001-07-04 04:46:56 +000028void buffer_put_int(Buffer *, u_int);
29
Ben Lindstrom16a86be2001-01-23 16:26:52 +000030#ifdef HAVE_U_INT64_T
Ben Lindstrom16ae3d02001-07-04 04:02:36 +000031u_int64_t buffer_get_int64(Buffer *);
Ben Lindstrom16ae3d02001-07-04 04:02:36 +000032void buffer_put_int64(Buffer *, u_int64_t);
Ben Lindstrom16a86be2001-01-23 16:26:52 +000033#endif
Damien Millerd4a8b7e1999-10-27 13:42:43 +100034
Ben Lindstrom16ae3d02001-07-04 04:02:36 +000035int buffer_get_char(Buffer *);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100036
Ben Lindstrom16ae3d02001-07-04 04:02:36 +000037void buffer_put_char(Buffer *, int);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100038
Damien Miller5a6b4fe2001-12-21 14:56:54 +110039void *buffer_get_string(Buffer *, u_int *);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100040
Ben Lindstrom16ae3d02001-07-04 04:02:36 +000041void buffer_put_string(Buffer *, const void *, u_int);
42void buffer_put_cstring(Buffer *, const char *);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100043
Damien Miller95def091999-11-25 00:26:21 +110044#endif /* BUFAUX_H */