summaryrefslogtreecommitdiff
path: root/other/ssharp/bufaux.h
diff options
context:
space:
mode:
authorSkyperTHC2026-03-03 06:28:55 +0000
committerSkyperTHC2026-03-03 06:28:55 +0000
commit5d3573ef7a109ee70416fe94db098fe6a769a798 (patch)
treedc2d5b294c9db8ab2db7433511f94e1c4bb8b698 /other/ssharp/bufaux.h
parentc6c59dc73cc4586357f93ab38ecf459e98675cc5 (diff)
packetstorm sync
Diffstat (limited to 'other/ssharp/bufaux.h')
-rw-r--r--other/ssharp/bufaux.h64
1 files changed, 64 insertions, 0 deletions
diff --git a/other/ssharp/bufaux.h b/other/ssharp/bufaux.h
new file mode 100644
index 0000000..c0182da
--- /dev/null
+++ b/other/ssharp/bufaux.h
@@ -0,0 +1,64 @@
1/*
2 * Author: Tatu Ylonen <ylo@cs.hut.fi>
3 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
4 * All rights reserved
5 *
6 * 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".
11 */
12
13/* RCSID("$OpenBSD: bufaux.h,v 1.11 2001/01/21 19:05:45 markus Exp $"); */
14
15#ifndef BUFAUX_H
16#define BUFAUX_H
17
18#include "buffer.h"
19#include <openssl/bn.h>
20
21/*
22 * Stores an BIGNUM in the buffer with a 2-byte msb first bit count, followed
23 * by (bits+7)/8 bytes of binary data, msb first.
24 */
25void buffer_put_bignum(Buffer * buffer, BIGNUM * value);
26void buffer_put_bignum2(Buffer * buffer, BIGNUM * value);
27
28/* Retrieves an BIGNUM from the buffer. */
29int buffer_get_bignum(Buffer * buffer, BIGNUM * value);
30int buffer_get_bignum2(Buffer *buffer, BIGNUM * value);
31
32/* Returns an integer from the buffer (4 bytes, msb first). */
33u_int buffer_get_int(Buffer * buffer);
34#ifdef HAVE_U_INT64_T
35u_int64_t buffer_get_int64(Buffer *buffer);
36#endif
37
38/* Stores an integer in the buffer in 4 bytes, msb first. */
39void buffer_put_int(Buffer * buffer, u_int value);
40#ifdef HAVE_U_INT64_T
41void buffer_put_int64(Buffer *buffer, u_int64_t value);
42#endif
43
44/* Returns a character from the buffer (0 - 255). */
45int buffer_get_char(Buffer * buffer);
46
47/* Stores a character in the buffer. */
48void buffer_put_char(Buffer * buffer, int value);
49
50/*
51 * Returns an arbitrary binary string from the buffer. The string cannot be
52 * longer than 256k. The returned value points to memory allocated with
53 * xmalloc; it is the responsibility of the calling function to free the
54 * data. If length_ptr is non-NULL, the length of the returned data will be
55 * stored there. A null character will be automatically appended to the
56 * returned string, and is not counted in length.
57 */
58char *buffer_get_string(Buffer * buffer, u_int *length_ptr);
59
60/* Stores and arbitrary binary string in the buffer. */
61void buffer_put_string(Buffer * buffer, const void *buf, u_int len);
62void buffer_put_cstring(Buffer *buffer, const char *s);
63
64#endif /* BUFAUX_H */