2017-10-17 17:18:16 +00:00
|
|
|
/*
|
2018-02-26 13:06:10 +00:00
|
|
|
* This file is part of the TREZOR project, https://trezor.io/
|
2017-10-17 17:18:16 +00:00
|
|
|
*
|
2018-02-26 13:06:10 +00:00
|
|
|
* 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/>.
|
2017-10-17 17:18:16 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stddef.h>
|
2017-12-14 23:06:09 +00:00
|
|
|
#include "secbool.h"
|
2017-12-14 16:14:15 +00:00
|
|
|
#include "py/obj.h"
|
2017-10-17 17:18:16 +00:00
|
|
|
|
2017-12-09 13:48:49 +00:00
|
|
|
void storage_init(void);
|
2017-12-14 15:27:18 +00:00
|
|
|
void storage_wipe(void);
|
2018-02-26 22:02:44 +00:00
|
|
|
secbool storage_check_pin(uint32_t pin, mp_obj_t callback);
|
2017-12-15 09:27:36 +00:00
|
|
|
secbool storage_unlock(const uint32_t pin, mp_obj_t callback);
|
2017-10-27 15:49:30 +00:00
|
|
|
secbool storage_has_pin(void);
|
2017-12-15 09:27:36 +00:00
|
|
|
secbool storage_change_pin(const uint32_t pin, const uint32_t newpin, mp_obj_t callback);
|
2017-10-27 15:49:30 +00:00
|
|
|
secbool storage_get(uint16_t key, const void **val, uint16_t *len);
|
|
|
|
secbool storage_set(uint16_t key, const void *val, uint16_t len);
|