summaryrefslogtreecommitdiff
path: root/buffer.h
diff options
context:
space:
mode:
authordjm <djm>2014-01-12 08:21:22 +0000
committerdjm <djm>2014-01-12 08:21:22 +0000
commit69750d71ff3d6393eccf6fa3c77376a68a3215bc (patch)
tree1eaf26e2ded7e0bc12376da61d3347c05af82655 /buffer.h
parenta6ec36e46c25f686a3c7eea16a6cc9a8633251cf (diff)
downloadopenssh-69750d71ff3d6393eccf6fa3c77376a68a3215bc.tar.gz
- djm@cvs.openbsd.org 2014/01/12 08:13:13
[bufaux.c buffer.h kex.c kex.h kexc25519.c kexc25519c.c kexc25519s.c] [kexdhc.c kexdhs.c kexecdhc.c kexecdhs.c kexgexc.c kexgexs.c] avoid use of OpenSSL BIGNUM type and functions for KEX with Curve25519 by adding a buffer_put_bignum2_from_string() that stores a string using the bignum encoding rules. Will make it easier to build a reduced-feature OpenSSH without OpenSSL in the future; ok markus@
Diffstat (limited to 'buffer.h')
-rw-r--r--buffer.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/buffer.h b/buffer.h
index 4fa2ca11..7df8a38f 100644
--- a/buffer.h
+++ b/buffer.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: buffer.h,v 1.22 2013/07/12 00:19:58 djm Exp $ */
+/* $OpenBSD: buffer.h,v 1.23 2014/01/12 08:13:13 djm Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
@@ -86,6 +86,10 @@ char *buffer_get_cstring_ret(Buffer *, u_int *);
void *buffer_get_string_ptr_ret(Buffer *, u_int *);
int buffer_get_char_ret(u_char *, Buffer *);
+void *buffer_get_bignum2_as_string_ret(Buffer *, u_int *);
+void *buffer_get_bignum2_as_string(Buffer *, u_int *);
+void buffer_put_bignum2_from_string(Buffer *, const u_char *, u_int);
+
#ifdef OPENSSL_HAS_ECC
#include <openssl/ec.h>