1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-11 18:39:05 +00:00
trezor-firmware/micropython/stmhal/bootloader/crypto.h

10 lines
155 B
C
Raw Normal View History

2016-10-04 16:01:48 +00:00
#ifndef __BOOTLOADER_CRYPTO_H__
#define __BOOTLOADER_CRYPTO_H__
#include <stdint.h>
#include <stdbool.h>
2017-02-11 15:47:36 +00:00
bool check_header(const uint8_t *data);
2016-10-04 16:01:48 +00:00
#endif