1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-03-08 11:16:09 +00:00
trezor-firmware/micropython/stmhal/bootloader/header.h

10 lines
222 B
C
Raw Normal View History

2017-02-09 18:52:05 +00:00
#ifndef __BOOTLOADER_HEADER_H__
#define __BOOTLOADER_HEADER_H__
#include <stdint.h>
#include <stdbool.h>
bool read_header(const uint8_t *data, uint32_t *expiry, uint32_t *version, uint8_t *sigidx, uint8_t *sig);
#endif