1999-10-27 05:42:43 +02:00
|
|
|
/*
|
1999-11-24 14:26:21 +01:00
|
|
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
|
|
|
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
|
|
|
* All rights reserved
|
2000-04-16 03:18:38 +02:00
|
|
|
*
|
2000-09-16 04:29:08 +02:00
|
|
|
* As far as I am concerned, the code I have written for this software
|
|
|
|
* can be used freely for any purpose. Any derived versions of this
|
|
|
|
* software must be clearly marked as such, and if the derived work is
|
|
|
|
* incompatible with the protocol description in the RFC file, it must be
|
|
|
|
* called by a name other than "ssh" or "Secure Shell".
|
1999-11-24 14:26:21 +01:00
|
|
|
*/
|
|
|
|
|
2001-12-21 04:56:54 +01:00
|
|
|
/* RCSID("$OpenBSD: bufaux.h,v 1.14 2001/12/19 17:16:13 stevesk Exp $"); */
|
1999-10-27 05:42:43 +02:00
|
|
|
|
|
|
|
#ifndef BUFAUX_H
|
|
|
|
#define BUFAUX_H
|
|
|
|
|
|
|
|
#include "buffer.h"
|
2001-01-22 06:34:40 +01:00
|
|
|
#include <openssl/bn.h>
|
1999-10-27 05:42:43 +02:00
|
|
|
|
2001-07-04 06:02:36 +02:00
|
|
|
void buffer_put_bignum(Buffer *, BIGNUM *);
|
|
|
|
void buffer_put_bignum2(Buffer *, BIGNUM *);
|
1999-10-27 05:42:43 +02:00
|
|
|
|
2001-07-04 06:02:36 +02:00
|
|
|
int buffer_get_bignum(Buffer *, BIGNUM *);
|
|
|
|
int buffer_get_bignum2(Buffer *, BIGNUM *);
|
1999-10-27 05:42:43 +02:00
|
|
|
|
2001-07-04 06:02:36 +02:00
|
|
|
u_int buffer_get_int(Buffer *);
|
|
|
|
void buffer_put_int(Buffer *, u_int);
|
2001-07-04 06:46:56 +02:00
|
|
|
|
2001-01-23 17:26:52 +01:00
|
|
|
#ifdef HAVE_U_INT64_T
|
2001-07-04 06:46:56 +02:00
|
|
|
u_int64_t buffer_get_int64(Buffer *);
|
2001-07-04 06:02:36 +02:00
|
|
|
void buffer_put_int64(Buffer *, u_int64_t);
|
2001-01-23 17:26:52 +01:00
|
|
|
#endif
|
1999-10-27 05:42:43 +02:00
|
|
|
|
2001-07-04 06:02:36 +02:00
|
|
|
int buffer_get_char(Buffer *);
|
1999-10-27 05:42:43 +02:00
|
|
|
|
2001-07-04 06:02:36 +02:00
|
|
|
void buffer_put_char(Buffer *, int);
|
1999-10-27 05:42:43 +02:00
|
|
|
|
2001-12-21 04:56:54 +01:00
|
|
|
void *buffer_get_string(Buffer *, u_int *);
|
1999-10-27 05:42:43 +02:00
|
|
|
|
2001-07-04 06:02:36 +02:00
|
|
|
void buffer_put_string(Buffer *, const void *, u_int);
|
|
|
|
void buffer_put_cstring(Buffer *, const char *);
|
1999-10-27 05:42:43 +02:00
|
|
|
|
1999-11-24 14:26:21 +01:00
|
|
|
#endif /* BUFAUX_H */
|