freebsd-dev/crypto/openssh/bufaux.h

46 lines
1.4 KiB
C
Raw Normal View History

2002-06-23 14:01:54 +00:00
/* $OpenBSD: bufaux.h,v 1.18 2002/04/20 09:14:58 markus Exp $ */
2002-03-18 09:55:03 +00:00
2000-02-24 14:29:47 +00:00
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
* All rights reserved
2000-05-15 04:37:24 +00: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".
2000-02-24 14:29:47 +00:00
*/
#ifndef BUFAUX_H
#define BUFAUX_H
#include "buffer.h"
#include <openssl/bn.h>
2000-02-24 14:29:47 +00:00
2002-03-18 09:55:03 +00:00
void buffer_put_bignum(Buffer *, BIGNUM *);
void buffer_put_bignum2(Buffer *, BIGNUM *);
void buffer_get_bignum(Buffer *, BIGNUM *);
void buffer_get_bignum2(Buffer *, BIGNUM *);
2000-02-24 14:29:47 +00:00
2002-06-23 14:01:54 +00:00
u_short buffer_get_short(Buffer *);
void buffer_put_short(Buffer *, u_short);
2002-03-18 09:55:03 +00:00
u_int buffer_get_int(Buffer *);
void buffer_put_int(Buffer *, u_int);
2000-02-24 14:29:47 +00:00
2002-03-18 09:55:03 +00:00
u_int64_t buffer_get_int64(Buffer *);
void buffer_put_int64(Buffer *, u_int64_t);
2000-02-24 14:29:47 +00:00
2002-03-18 09:55:03 +00:00
int buffer_get_char(Buffer *);
void buffer_put_char(Buffer *, int);
2000-02-24 14:29:47 +00:00
2002-03-18 09:55:03 +00:00
void *buffer_get_string(Buffer *, u_int *);
void buffer_put_string(Buffer *, const void *, u_int);
void buffer_put_cstring(Buffer *, const char *);
2000-02-24 14:29:47 +00:00
2002-06-23 14:01:54 +00:00
#define buffer_skip_string(b) \
do { u_int l = buffer_get_int(b); buffer_consume(b, l); } while(0)
2000-02-24 14:29:47 +00:00
#endif /* BUFAUX_H */