=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/dh.h,v retrieving revision 1.1.2.5 retrieving revision 1.2 diff -u -r1.1.2.5 -r1.2 --- src/usr.bin/ssh/dh.h 2001/09/27 00:15:42 1.1.2.5 +++ src/usr.bin/ssh/dh.h 2001/01/29 01:58:15 1.2 @@ -1,4 +1,4 @@ -/* $OpenBSD: dh.h,v 1.1.2.5 2001/09/27 00:15:42 miod Exp $ */ +/* $OpenBSD: dh.h,v 1.2 2001/01/29 01:58:15 niklas Exp $ */ /* * Copyright (c) 2000 Niels Provos. All rights reserved. @@ -32,17 +32,6 @@ BIGNUM *p; }; -DH *choose_dh(int, int, int); -DH *dh_new_group_asc(const char *, const char *); -DH *dh_new_group(BIGNUM *, BIGNUM *); -DH *dh_new_group1(void); - -void dh_gen_key(DH *, int); -int dh_pub_is_valid(DH *, BIGNUM *); - -int dh_estimate(int); - -#define DH_GRP_MIN 1024 -#define DH_GRP_MAX 8192 +DH *choose_dh(int minbits); #endif