[BACK]Return to dh.h CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/dh.h between version 1.1 and 1.1.2.5

version 1.1, 2000/10/11 04:02:17 version 1.1.2.5, 2001/09/27 00:15:42
Line 1 
Line 1 
   /*      $OpenBSD$       */
   
 /*  /*
  * Copyright (c) 2000 Niels Provos.  All rights reserved.   * Copyright (c) 2000 Niels Provos.  All rights reserved.
  *   *
Line 30 
Line 32 
         BIGNUM *p;          BIGNUM *p;
 };  };
   
 DH *choose_dh(int minbits);  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
   
 #endif  #endif

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.1.2.5