diff options
author | 2014-07-03 04:36:45 +0000 | |
---|---|---|
committer | 2014-07-03 04:36:45 +0000 | |
commit | 97a43512f836cf55465680afe8c5137ad7fb5043 (patch) | |
tree | d0422165cafc0350e601f42a5fe168a34fe047ab /usr.bin/ssh | |
parent | When hashing or removing hosts using ssh-keygen, don't choke on (diff) | |
download | wireguard-openbsd-97a43512f836cf55465680afe8c5137ad7fb5043.tar.xz wireguard-openbsd-97a43512f836cf55465680afe8c5137ad7fb5043.zip |
forward-declare struct sshbuf so consumers don't need to include sshbuf.h
Diffstat (limited to 'usr.bin/ssh')
-rw-r--r-- | usr.bin/ssh/digest.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/digest.h b/usr.bin/ssh/digest.h index edf6c87da86..6afb197f0a2 100644 --- a/usr.bin/ssh/digest.h +++ b/usr.bin/ssh/digest.h @@ -1,4 +1,4 @@ -/* $OpenBSD: digest.h,v 1.5 2014/06/24 01:13:21 djm Exp $ */ +/* $OpenBSD: digest.h,v 1.6 2014/07/03 04:36:45 djm Exp $ */ /* * Copyright (c) 2013 Damien Miller <djm@mindrot.org> * @@ -30,6 +30,7 @@ #define SSH_DIGEST_SHA512 5 #define SSH_DIGEST_MAX 6 +struct sshbuf; struct ssh_digest_ctx; /* Returns the algorithm's digest length in bytes or 0 for invalid algorithm */ |