[FL-1490] FuriHal: crypto api. Crypto cli tool. (#702)
* FuriHal: crypto layer * Furi: add crash routine. * FuriHal: crypto api. Crypto: cli command to manipulate secure enclave and encrypt/decrypt plain text. * DeviceInfo: secure enclave verification. * Rename original to enclave_valid * Update expected enclave signature to match production keys * F7: remove unused files
This commit is contained in:
@@ -3,10 +3,7 @@
|
||||
#include <furi-hal-console.h>
|
||||
#include <stdio.h>
|
||||
|
||||
void __furi_abort(void);
|
||||
|
||||
void __furi_print_name(void) {
|
||||
furi_hal_console_puts("\r\n\033[0;31m[E]");
|
||||
if(task_is_isr_context()) {
|
||||
furi_hal_console_puts("[ISR] ");
|
||||
} else {
|
||||
@@ -19,13 +16,6 @@ void __furi_print_name(void) {
|
||||
furi_hal_console_puts("] ");
|
||||
}
|
||||
}
|
||||
furi_hal_console_puts("\033[0m");
|
||||
}
|
||||
|
||||
void __furi_check(void) {
|
||||
__furi_print_name();
|
||||
furi_hal_console_puts("assertion failed\r\n");
|
||||
__furi_abort();
|
||||
}
|
||||
|
||||
void __furi_abort(void) {
|
||||
@@ -33,4 +23,13 @@ void __furi_abort(void) {
|
||||
asm("bkpt 1");
|
||||
while(1) {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void furi_crash(const char* message) {
|
||||
furi_hal_console_puts("\r\n\033[0;31m[CRASH]");
|
||||
__furi_print_name();
|
||||
furi_hal_console_puts(message ? message : "Programming Error");
|
||||
furi_hal_console_puts("\r\nSystem halted. Connect debugger for more info\r\n");
|
||||
furi_hal_console_puts("\033[0m\r\n");
|
||||
__furi_abort();
|
||||
}
|
||||
|
Reference in New Issue
Block a user