mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-06-25 09:22:33 +00:00
10 lines
155 B
C
10 lines
155 B
C
#ifndef __BOOTLOADER_CRYPTO_H__
|
|
#define __BOOTLOADER_CRYPTO_H__
|
|
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
|
|
bool check_header(const uint8_t *data);
|
|
|
|
#endif
|