summaryrefslogtreecommitdiff
path: root/sshbuf.h
diff options
context:
space:
mode:
authordjm@openbsd.org <djm@openbsd.org>2019-01-21 09:52:25 +0000
committerDamien Miller <djm@mindrot.org>2019-01-21 21:46:57 +1100
commit803178bd5da7e72be94ba5b4c4c196d4b542da4d (patch)
tree84d9b3d978b519c5baa8aa4aef5a5151f16a8813 /sshbuf.h
parentf3ebaffd8714be31d4345f90af64992de4b3bba2 (diff)
downloadopenssh-git-803178bd5da7e72be94ba5b4c4c196d4b542da4d.tar.gz
upstream: remove obsolete (SSH v.1) sshbuf_get/put_bignum1
functions from markus@ ok djm@ OpenBSD-Commit-ID: 0380b1b2d9de063de3c5a097481a622e6a04943e
Diffstat (limited to 'sshbuf.h')
-rw-r--r--sshbuf.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/sshbuf.h b/sshbuf.h
index a43598ca..fa54b495 100644
--- a/sshbuf.h
+++ b/sshbuf.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: sshbuf.h,v 1.11 2018/07/09 21:56:06 markus Exp $ */
+/* $OpenBSD: sshbuf.h,v 1.12 2019/01/21 09:52:25 djm Exp $ */
/*
* Copyright (c) 2011 Damien Miller
*
@@ -213,9 +213,7 @@ int sshbuf_get_bignum2_bytes_direct(struct sshbuf *buf,
const u_char **valp, size_t *lenp);
#ifdef WITH_OPENSSL
int sshbuf_get_bignum2(struct sshbuf *buf, BIGNUM *v);
-int sshbuf_get_bignum1(struct sshbuf *buf, BIGNUM *v);
int sshbuf_put_bignum2(struct sshbuf *buf, const BIGNUM *v);
-int sshbuf_put_bignum1(struct sshbuf *buf, const BIGNUM *v);
# ifdef OPENSSL_HAS_ECC
int sshbuf_get_ec(struct sshbuf *buf, EC_POINT *v, const EC_GROUP *g);
int sshbuf_get_eckey(struct sshbuf *buf, EC_KEY *v);