diff options
author | 2019-01-21 09:54:11 +0000 | |
---|---|---|
committer | 2019-01-21 09:54:11 +0000 | |
commit | f37f3ee23e78db3061951f8cc15291bbef4b09cf (patch) | |
tree | 174db40b7acff1092f402685d6208400049486f9 /usr.bin/ssh/sshbuf.h | |
parent | remove obsolete (SSH v.1) sshbuf_get/put_bignum1 functions (diff) | |
download | wireguard-openbsd-f37f3ee23e78db3061951f8cc15291bbef4b09cf.tar.xz wireguard-openbsd-f37f3ee23e78db3061951f8cc15291bbef4b09cf.zip |
Make sshpkt_get_bignum2() allocate the bignum it is parsing rather
than make the caller do it. Saves a lot of boilerplate code.
from markus@ ok djm@
Diffstat (limited to 'usr.bin/ssh/sshbuf.h')
-rw-r--r-- | usr.bin/ssh/sshbuf.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/sshbuf.h b/usr.bin/ssh/sshbuf.h index 01fafb43ac1..c4858867261 100644 --- a/usr.bin/ssh/sshbuf.h +++ b/usr.bin/ssh/sshbuf.h @@ -1,4 +1,4 @@ -/* $OpenBSD: sshbuf.h,v 1.12 2019/01/21 09:52:25 djm Exp $ */ +/* $OpenBSD: sshbuf.h,v 1.13 2019/01/21 09:54:11 djm Exp $ */ /* * Copyright (c) 2011 Damien Miller * @@ -204,7 +204,7 @@ int sshbuf_peek_string_direct(const struct sshbuf *buf, const u_char **valp, * Functions to extract or store SSH wire encoded bignums and elliptic * curve points. */ -int sshbuf_get_bignum2(struct sshbuf *buf, BIGNUM *v); +int sshbuf_get_bignum2(struct sshbuf *buf, BIGNUM **valp); int sshbuf_get_bignum2_bytes_direct(struct sshbuf *buf, const u_char **valp, size_t *lenp); int sshbuf_put_bignum2(struct sshbuf *buf, const BIGNUM *v); |