diff options
author | markus@openbsd.org <markus@openbsd.org> | 2015-01-19 21:16:15 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2015-01-19 23:19:39 +0100 |
commit | 57d10cbe861a235dd269c74fb2fe248469ecee9d (patch) | |
tree | c65deed24700490bd3b20300c4829d4d5466ff6d /dh.h | |
parent | upstream commit (diff) | |
download | openssh-57d10cbe861a235dd269c74fb2fe248469ecee9d.tar.xz openssh-57d10cbe861a235dd269c74fb2fe248469ecee9d.zip |
upstream commit
adapt kex to sshbuf and struct ssh; ok djm@
Diffstat (limited to 'dh.h')
-rw-r--r-- | dh.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,4 +1,4 @@ -/* $OpenBSD: dh.h,v 1.11 2013/10/08 11:42:13 dtucker Exp $ */ +/* $OpenBSD: dh.h,v 1.12 2015/01/19 20:16:15 markus Exp $ */ /* * Copyright (c) 2000 Niels Provos. All rights reserved. @@ -38,10 +38,10 @@ DH *dh_new_group(BIGNUM *, BIGNUM *); DH *dh_new_group1(void); DH *dh_new_group14(void); -void dh_gen_key(DH *, int); +int dh_gen_key(DH *, int); int dh_pub_is_valid(DH *, BIGNUM *); -int dh_estimate(int); +u_int dh_estimate(int); /* Min and max values from RFC4419. */ #define DH_GRP_MIN 1024 |