mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-12-23 14:58:09 +00:00
12 lines
184 B
C
12 lines
184 B
C
#ifndef __BOOTLOADER_CRYPTO_H__
|
|
#define __BOOTLOADER_CRYPTO_H__
|
|
|
|
#include <stdint.h>
|
|
#include <stdbool.h>
|
|
|
|
bool check_header(const uint8_t *data);
|
|
|
|
bool check_signature(void);
|
|
|
|
#endif
|