mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-09 17:10:17 +00:00
17 lines
269 B
C
17 lines
269 B
C
/*
|
|
* Copyright (c) Pavol Rusnak, SatoshiLabs
|
|
*
|
|
* Licensed under TREZOR License
|
|
* see LICENSE file for details
|
|
*/
|
|
|
|
#ifndef __TREZORHAL_SBU_H__
|
|
#define __TREZORHAL_SBU_H__
|
|
|
|
#include "secbool.h"
|
|
|
|
void sbu_init(void);
|
|
void sbu_set(secbool sbu1, secbool sbu2);
|
|
|
|
#endif
|