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
|
|
|
*/
|
|
|
|
|
2000-12-22 02:43:59 +01:00
|
|
|
/* RCSID("$OpenBSD: bufaux.h,v 1.9 2000/12/19 23:17:55 markus Exp $"); */
|
1999-10-27 05:42:43 +02:00
|
|
|
|
|
|
|
#ifndef BUFAUX_H
|
|
|
|
#define BUFAUX_H
|
|
|
|
|
|
|
|
#include "buffer.h"
|
|
|
|
|
1999-11-25 01:54:57 +01:00
|
|
|
/*
|
|
|
|
* Stores an BIGNUM in the buffer with a 2-byte msb first bit count, followed
|
|
|
|
* by (bits+7)/8 bytes of binary data, msb first.
|
|
|
|
*/
|
1999-11-24 14:26:21 +01:00
|
|
|
void buffer_put_bignum(Buffer * buffer, BIGNUM * value);
|
2000-04-01 03:09:21 +02:00
|
|
|
void buffer_put_bignum2(Buffer * buffer, BIGNUM * value);
|
1999-10-27 05:42:43 +02:00
|
|
|
|
|
|
|
/* Retrieves an BIGNUM from the buffer. */
|
1999-11-24 14:26:21 +01:00
|
|
|
int buffer_get_bignum(Buffer * buffer, BIGNUM * value);
|
2000-04-01 03:09:21 +02:00
|
|
|
int buffer_get_bignum2(Buffer *buffer, BIGNUM * value);
|
1999-10-27 05:42:43 +02:00
|
|
|
|
|
|
|
/* Returns an integer from the buffer (4 bytes, msb first). */
|
2000-12-22 02:43:59 +01:00
|
|
|
u_int buffer_get_int(Buffer * buffer);
|
1999-10-27 05:42:43 +02:00
|
|
|
|
|
|
|
/* Stores an integer in the buffer in 4 bytes, msb first. */
|
2000-12-22 02:43:59 +01:00
|
|
|
void buffer_put_int(Buffer * buffer, u_int value);
|
1999-10-27 05:42:43 +02:00
|
|
|
|
|
|
|
/* Returns a character from the buffer (0 - 255). */
|
1999-11-24 14:26:21 +01:00
|
|
|
int buffer_get_char(Buffer * buffer);
|
1999-10-27 05:42:43 +02:00
|
|
|
|
|
|
|
/* Stores a character in the buffer. */
|
1999-11-24 14:26:21 +01:00
|
|
|
void buffer_put_char(Buffer * buffer, int value);
|
1999-10-27 05:42:43 +02:00
|
|
|
|
1999-11-25 01:54:57 +01:00
|
|
|
/*
|
|
|
|
* Returns an arbitrary binary string from the buffer. The string cannot be
|
|
|
|
* longer than 256k. The returned value points to memory allocated with
|
|
|
|
* xmalloc; it is the responsibility of the calling function to free the
|
|
|
|
* data. If length_ptr is non-NULL, the length of the returned data will be
|
|
|
|
* stored there. A null character will be automatically appended to the
|
|
|
|
* returned string, and is not counted in length.
|
|
|
|
*/
|
2000-12-22 02:43:59 +01:00
|
|
|
char *buffer_get_string(Buffer * buffer, u_int *length_ptr);
|
1999-10-27 05:42:43 +02:00
|
|
|
|
|
|
|
/* Stores and arbitrary binary string in the buffer. */
|
2000-12-22 02:43:59 +01:00
|
|
|
void buffer_put_string(Buffer * buffer, const void *buf, u_int len);
|
2000-04-01 03:09:21 +02:00
|
|
|
void buffer_put_cstring(Buffer *buffer, const char *s);
|
1999-10-27 05:42:43 +02:00
|
|
|
|
1999-11-24 14:26:21 +01:00
|
|
|
#endif /* BUFAUX_H */
|