mirror of
				https://github.com/espressif/esp-idf.git
				synced 2025-11-03 22:08:28 +00:00 
			
		
		
		
	- Decryption callback is additional feature, default disabled - This callback can help to plug in external components managing additional encapsulation layers on firmware image format
		
			
				
	
	
		
			22 lines
		
	
	
		
			887 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			887 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
menu "ESP HTTPS OTA"
 | 
						|
 | 
						|
    config ESP_HTTPS_OTA_DECRYPT_CB
 | 
						|
        bool "Provide decryption callback"
 | 
						|
        default n
 | 
						|
        help
 | 
						|
            Exposes an additional callback whereby firmware data could be decrypted
 | 
						|
            before being processed by OTA update component. This can help to integrate
 | 
						|
            external encryption related format and removal of such encapsulation layer
 | 
						|
            from firmware image.
 | 
						|
 | 
						|
    config ESP_HTTPS_OTA_ALLOW_HTTP
 | 
						|
        bool "Allow HTTP for OTA (WARNING: ONLY FOR TESTING PURPOSE, READ HELP)"
 | 
						|
        default n
 | 
						|
        help
 | 
						|
            It is highly recommended to keep HTTPS (along with server certificate validation) enabled.
 | 
						|
            Enabling this option comes with potential risk of:
 | 
						|
            - Non-encrypted communication channel with server
 | 
						|
            - Accepting firmware upgrade image from server with fake identity
 | 
						|
 | 
						|
endmenu
 |