blob: 650282acae403ab749a97224a33f8af3f11955b1 [file] [log] [blame]
Ben Lindstrom88aa1b42002-03-22 01:47:52 +00001/* $OpenBSD: bufaux.h,v 1.17 2002/03/18 17:25:29 provos Exp $ */
Ben Lindstrom05764b92002-03-05 01:53:02 +00002
Damien Millerd4a8b7e1999-10-27 13:42:43 +10003/*
Damien Miller95def091999-11-25 00:26:21 +11004 * Author: Tatu Ylonen <ylo@cs.hut.fi>
Damien Miller95def091999-11-25 00:26:21 +11005 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
6 * All rights reserved
Damien Miller4af51302000-04-16 11:18:38 +10007 *
Damien Millere4340be2000-09-16 13:29:08 +11008 * As far as I am concerned, the code I have written for this software
9 * can be used freely for any purpose. Any derived versions of this
10 * software must be clearly marked as such, and if the derived work is
11 * incompatible with the protocol description in the RFC file, it must be
12 * called by a name other than "ssh" or "Secure Shell".
Damien Miller95def091999-11-25 00:26:21 +110013 */
Damien Millerd4a8b7e1999-10-27 13:42:43 +100014
Damien Millerd4a8b7e1999-10-27 13:42:43 +100015#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 Miller76e1e362002-01-22 23:15:57 +110023void buffer_get_bignum(Buffer *, BIGNUM *);
24void buffer_get_bignum2(Buffer *, BIGNUM *);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100025
Kevin Steves399ec972002-03-05 18:59:45 +000026u_int buffer_get_int(Buffer *);
Ben Lindstrom4cc240d2001-07-04 04:46:56 +000027void buffer_put_int(Buffer *, u_int);
28
Ben Lindstrom16a86be2001-01-23 16:26:52 +000029#ifdef HAVE_U_INT64_T
Ben Lindstrom16ae3d02001-07-04 04:02:36 +000030u_int64_t buffer_get_int64(Buffer *);
Ben Lindstrom16ae3d02001-07-04 04:02:36 +000031void buffer_put_int64(Buffer *, u_int64_t);
Ben Lindstrom16a86be2001-01-23 16:26:52 +000032#endif
Damien Millerd4a8b7e1999-10-27 13:42:43 +100033
Ben Lindstrom16ae3d02001-07-04 04:02:36 +000034int buffer_get_char(Buffer *);
Ben Lindstrom16ae3d02001-07-04 04:02:36 +000035void buffer_put_char(Buffer *, int);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100036
Damien Miller5a6b4fe2001-12-21 14:56:54 +110037void *buffer_get_string(Buffer *, u_int *);
Ben Lindstrom16ae3d02001-07-04 04:02:36 +000038void buffer_put_string(Buffer *, const void *, u_int);
39void buffer_put_cstring(Buffer *, const char *);
Damien Millerd4a8b7e1999-10-27 13:42:43 +100040
Ben Lindstrom88aa1b42002-03-22 01:47:52 +000041#define buffer_skip_string(b) \
42 do { u_int l = buffer_get_int(b); buffer_consume(b, l); } while(0)
43
Damien Miller95def091999-11-25 00:26:21 +110044#endif /* BUFAUX_H */