Fix for 333657 . Increase maximum RSA key size to 8192 bits in freebl. r=nelson

This commit is contained in:
julien.pierre.bugs%sun.com 2006-04-12 05:37:52 +00:00
Родитель b3f705b464
Коммит 92b2f48d10
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -70,7 +70,8 @@
#include "nss.h"
#define MIN_KEY_BITS 512
#define MAX_KEY_BITS 2048
/* MAX_KEY_BITS should agree with MAX_RSA_MODULUS in freebl */
#define MAX_KEY_BITS 8192
#define DEFAULT_KEY_BITS 1024
#define GEN_BREAK(e) rv=e; break;