mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-09 08:22:04 -04:00
openssl rsa doesn't have a 2048 bit limit. Change it to 4096, which
takes a long time and a lot of entropy to generate.
This commit is contained in:
parent
8ace2af344
commit
b7bf1bc9d9
1 changed files with 2 additions and 2 deletions
|
|
@ -17,7 +17,7 @@
|
|||
* PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: dnssec-keygen.c,v 1.43 2000/10/31 20:09:12 bwelling Exp $ */
|
||||
/* $Id: dnssec-keygen.c,v 1.44 2000/11/07 20:10:14 bwelling Exp $ */
|
||||
|
||||
#include <config.h>
|
||||
|
||||
|
|
@ -44,7 +44,7 @@
|
|||
|
||||
#include "dnssectool.h"
|
||||
|
||||
#define MAX_RSA 2048 /* XXX ogud update this when rsa library is updated */
|
||||
#define MAX_RSA 4096 /* should be long enough... */
|
||||
|
||||
const char *program = "dnssec-keygen";
|
||||
int verbose;
|
||||
|
|
|
|||
Loading…
Reference in a new issue