1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-23 14:58:09 +00:00
trezor-firmware/micropython/stmhal/bootloader/crypto.h
2017-02-16 13:48:28 +01:00

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