mirror of
				https://github.com/cuberite/polarssl.git
				synced 2025-11-03 20:22:59 -05:00 
			
		
		
		
	This commit was generated using the following script: # ======================== #!/bin/sh git ls-files | grep -v '^ChangeLog' | xargs sed -b -E -i ' s/((check|crypto|full|mbedtls|query)_config)\.h/\1\nh/g s/config\.h/mbedtls_config.h/g y/\n/./ ' mv include/mbedtls/config.h include/mbedtls/mbedtls_config.h # ======================== Signed-off-by: Bence Szépkúti <bence.szepkuti@arm.com>
		
			
				
	
	
		
			13 lines
		
	
	
		
			594 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			594 B
		
	
	
	
		
			Markdown
		
	
	
	
	
	
Replaced MBEDTLS_SHA512_NO_SHA384 with MBEDTLS_SHA384_C
 | 
						|
------------------------------------------------------
 | 
						|
 | 
						|
This does not affect users who use the default `mbedtls_config.h`.
 | 
						|
MBEDTLS_SHA512_NO_SHA384 was disabled by default, now MBEDTLS_SHA384_C is
 | 
						|
enabled by default.
 | 
						|
 | 
						|
If you were using a config file with both MBEDTLS_SHA512_C and
 | 
						|
MBEDTLS_SHA512_NO_SHA384, then just remove the MBEDTLS_SHA512_NO_SHA384.
 | 
						|
If you were using a config file with MBEDTLS_SHA512_C and without
 | 
						|
MBEDTLS_SHA512_NO_SHA384 and you need the SHA-384 algorithm, then add
 | 
						|
`#define MBEDTLS_SHA384_C` to your config file.
 |