1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-24 15:28:10 +00:00
trezor-firmware/micropython/stmhal/bootloader/crypto.h

12 lines
184 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
2017-02-16 12:48:28 +00:00
bool check_signature(void);
2016-10-04 16:01:48 +00:00
#endif