2020-02-26 16:41:40 +00:00
|
|
|
/*
|
|
|
|
* This file is part of the Trezor project, https://trezor.io/
|
|
|
|
*
|
|
|
|
* Copyright (c) SatoshiLabs
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2021-02-12 11:12:20 +00:00
|
|
|
#ifndef __TREZORHAL_RANDOM_DELAYS_H__
|
|
|
|
#define __TREZORHAL_RANDOM_DELAYS_H__
|
2020-02-26 16:41:40 +00:00
|
|
|
|
2023-03-23 13:54:54 +00:00
|
|
|
void random_delays_init(void);
|
2021-02-12 11:12:20 +00:00
|
|
|
void wait_random(void);
|
2023-03-23 13:54:54 +00:00
|
|
|
|
2020-02-26 16:41:40 +00:00
|
|
|
#endif
|