Clarify wording a little.
This commit is contained in:
		
							
								
								
									
										16
									
								
								FAQ
									
									
									
									
									
								
							
							
						
						
									
										16
									
								
								FAQ
									
									
									
									
									
								
							@@ -897,16 +897,14 @@ thread-safe):
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
* Why does Valgrind complain about the use of uninitialized data?
 | 
					* Why does Valgrind complain about the use of uninitialized data?
 | 
				
			||||||
 | 
					
 | 
				
			||||||
OpenSSL does internally call its own PRNG routines to retrieve random
 | 
					When OpenSSL's PRNG routines are called to generate random numbers the supplied
 | 
				
			||||||
numbers. It so does with uninitialed buffer contents. The buffer
 | 
					buffer contents are mixed into the entropy pool: so it technically does not
 | 
				
			||||||
contents is mixed into the entropy pool so that it technically does
 | 
					matter whether the buffer is initialized at this point or not.  Valgrind (and
 | 
				
			||||||
not matter whether the buffer is initialized at this point or not.
 | 
					other test tools) will complain about this. When using Valgrind, make sure the
 | 
				
			||||||
Valgrind (and other test tools) will complain whatsoever. When
 | 
					OpenSSL library has been compiled with the PEDANTIC macro defined (-DPEDANTIC)
 | 
				
			||||||
using Valgrind, make sure to use an OpenSSL library that has been
 | 
					to get rid of these warnings.  Compling with -DPURIFY will help as well.
 | 
				
			||||||
compiled with the PEDANTIC macro being defined (-DPEDANTIC) to
 | 
					 | 
				
			||||||
get rid of these warnings. Compling with -DPURIFY will help as well.
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
The PEDANTIC macro was added in OpenSSL 0.9.8f.
 | 
					The use of PEDANTIC with the PRNG was added in OpenSSL 0.9.8f.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
===============================================================================
 | 
					===============================================================================
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user