diff options
author | Damien Miller <djm@mindrot.org> | 2001-03-30 02:50:10 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2001-03-30 02:50:10 +0200 |
commit | 9709f906844c86ec4db6fd8dd3ff377069c80573 (patch) | |
tree | 40fe09a5a23f2ad1f1b1546361ac00b0dd678997 /kex.h | |
parent | - OpenBSD CVS Sync (diff) | |
download | openssh-9709f906844c86ec4db6fd8dd3ff377069c80573.tar.xz openssh-9709f906844c86ec4db6fd8dd3ff377069c80573.zip |
- OpenBSD CVS Sync
- markus@cvs.openbsd.org 2001/03/29 21:17:40
[dh.c dh.h kex.c kex.h]
prepare for rekeying: move DH code to dh.c
Diffstat (limited to 'kex.h')
-rw-r--r-- | kex.h | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -1,4 +1,4 @@ -/* $OpenBSD: kex.h,v 1.16 2001/03/28 21:59:40 provos Exp $ */ +/* $OpenBSD: kex.h,v 1.17 2001/03/29 21:17:40 markus Exp $ */ /* * Copyright (c) 2000 Markus Friedl. All rights reserved. @@ -103,11 +103,6 @@ kex_choose_conf(char *cprop[PROPOSAL_MAX], char *sprop[PROPOSAL_MAX], int server); int kex_derive_keys(Kex *k, u_char *hash, BIGNUM *shared_secret); void packet_set_kex(Kex *k); -int dh_pub_is_valid(DH *dh, BIGNUM *dh_pub); -DH *dh_new_group_asc(const char *, const char *); -DH *dh_new_group(BIGNUM *, BIGNUM *); -void dh_gen_key(DH *, int); -DH *dh_new_group1(void); u_char * kex_hash( |