From 266483d2f56b0764849797f31866bfd84f9c3aa8 Mon Sep 17 00:00:00 2001 From: Matt Caswell Date: Thu, 26 Feb 2015 11:57:37 +0000 Subject: RAND_bytes updates Ensure RAND_bytes return value is checked correctly, and that we no longer use RAND_pseudo_bytes. Reviewed-by: Richard Levitte --- crypto/des/enc_writ.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'crypto/des') diff --git a/crypto/des/enc_writ.c b/crypto/des/enc_writ.c index b4eecc3812..55cc7fcb41 100644 --- a/crypto/des/enc_writ.c +++ b/crypto/des/enc_writ.c @@ -132,7 +132,8 @@ int DES_enc_write(int fd, const void *_buf, int len, if (len < 8) { cp = shortbuf; memcpy(shortbuf, buf, len); - RAND_pseudo_bytes(shortbuf + len, 8 - len); + if (RAND_bytes(shortbuf + len, 8 - len) <= 0) + return -1; rnum = 8; } else { cp = buf; -- cgit v1.2.3