mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-08 19:02:05 -04:00
376. [bug] The server should always use good entropy when
performing cryptographic functions needing entropy.
This commit is contained in:
parent
575db903aa
commit
ab8668fb58
2 changed files with 5 additions and 2 deletions
3
CHANGES
3
CHANGES
|
|
@ -1,4 +1,7 @@
|
|||
|
||||
376. [bug] The server should always use good entropy when
|
||||
performing cryptographic functions needing entropy.
|
||||
|
||||
375. [bug] Per-zone "allow-query" did not properly override the
|
||||
view/global one for CNAME targets and additional
|
||||
data [RT #220].
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: server.c,v 1.213 2000/08/08 01:56:44 gson Exp $ */
|
||||
/* $Id: server.c,v 1.214 2000/08/08 18:15:18 bwelling Exp $ */
|
||||
|
||||
#include <config.h>
|
||||
|
||||
|
|
@ -1699,7 +1699,7 @@ ns_server_create(isc_mem_t *mctx, ns_server_t **serverp) {
|
|||
ISC_R_NOMEMORY : ISC_R_SUCCESS,
|
||||
"allocating reload event");
|
||||
|
||||
CHECKFATAL(dst_lib_init(ns_g_mctx, ns_g_entropy, 0),
|
||||
CHECKFATAL(dst_lib_init(ns_g_mctx, ns_g_entropy, ISC_ENTROPY_GOODONLY),
|
||||
"initializing DST");
|
||||
|
||||
server->tkeyctx = NULL;
|
||||
|
|
|
|||
Loading…
Reference in a new issue