* Added support for running applications from SD card (FAPs - Flipper Application Packages) * Added plugin_dist target for fbt to build FAPs * All apps of type FlipperAppType.EXTERNAL and FlipperAppType.PLUGIN are built as FAPs by default * Updated VSCode configuration for new fbt features - re-deploy stock configuration to use them * Added debugging support for FAPs with fbt debug & VSCode * Added public firmware API with automated versioning Co-authored-by: hedger <hedger@users.noreply.github.com> Co-authored-by: SG <who.just.the.doctor@gmail.com> Co-authored-by: あく <alleteam@gmail.com>
		
			
				
	
	
		
			39 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| #pragma once
 | |
| 
 | |
| #include "sha256.h"
 | |
| 
 | |
| #ifdef __cplusplus
 | |
| extern "C" {
 | |
| #endif
 | |
| 
 | |
| typedef struct hmac_context {
 | |
|     void (*init_hash)(const struct hmac_context* context);
 | |
|     void (*update_hash)(
 | |
|         const struct hmac_context* context,
 | |
|         const uint8_t* message,
 | |
|         unsigned message_size);
 | |
|     void (*finish_hash)(const struct hmac_context* context, uint8_t* hash_result);
 | |
|     unsigned block_size; /* Hash function block size in bytes, eg 64 for SHA-256. */
 | |
|     unsigned result_size; /* Hash function result size in bytes, eg 32 for SHA-256. */
 | |
|     uint8_t* tmp; /* Must point to a buffer of at least (2 * result_size + block_size) bytes. */
 | |
| } hmac_context;
 | |
| 
 | |
| typedef struct hmac_sha256_context {
 | |
|     hmac_context hmac_ctx;
 | |
|     sha256_context sha_ctx;
 | |
|     uint8_t tmp[32 * 2 + 64];
 | |
| } hmac_sha256_context;
 | |
| 
 | |
| void hmac_sha256_init(hmac_sha256_context* ctx, const uint8_t* K);
 | |
| 
 | |
| void hmac_sha256_update(
 | |
|     const hmac_sha256_context* ctx,
 | |
|     const uint8_t* message,
 | |
|     unsigned message_size);
 | |
| 
 | |
| void hmac_sha256_finish(const hmac_sha256_context* ctx, const uint8_t* K, uint8_t* hash_result);
 | |
| 
 | |
| #ifdef __cplusplus
 | |
| }
 | |
| #endif
 |