2019-05-12 18:15:23 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2019 shchmue
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU General Public License,
|
|
|
|
* version 2, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope 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/>.
|
|
|
|
*/
|
|
|
|
|
2019-03-04 23:05:42 +00:00
|
|
|
#ifndef _KEYS_H_
|
|
|
|
#define _KEYS_H_
|
|
|
|
|
2019-09-23 20:40:31 +01:00
|
|
|
#include "../utils/types.h"
|
|
|
|
|
2019-10-06 20:05:50 +01:00
|
|
|
|
2019-10-04 15:22:24 +01:00
|
|
|
//testing
|
2019-10-06 20:05:50 +01:00
|
|
|
void screenshot(const char* suffix);
|
2019-10-04 15:22:24 +01:00
|
|
|
//testing
|
|
|
|
|
2019-10-06 20:05:50 +01:00
|
|
|
bool isSysNAND();
|
2019-09-28 23:18:17 +01:00
|
|
|
bool dump_keys();
|
2019-10-04 19:48:24 +01:00
|
|
|
bool incognito();
|
2019-09-28 23:18:17 +01:00
|
|
|
void cleanUp();
|
2019-10-04 19:53:08 +01:00
|
|
|
bool readData(u8 *buffer, u32 offset, u32 length, void (*progress_callback)(u32, u32));
|
|
|
|
bool writeData(u8 *buffer, u32 offset, u32 length, void (*progress_callback)(u32, u32));
|
2019-09-24 23:49:22 +01:00
|
|
|
bool writeClientCertHash();
|
|
|
|
bool writeCal0Hash();
|
2019-10-07 19:02:42 +01:00
|
|
|
bool verifyProdinfo(u8 *blob);
|
2019-09-28 23:18:17 +01:00
|
|
|
bool backupProdinfo();
|
|
|
|
bool restoreProdinfo();
|
2019-10-04 19:48:24 +01:00
|
|
|
bool checkBackupExists();
|
|
|
|
void print_progress(u32 count, u32 max);
|
2019-03-04 23:05:42 +00:00
|
|
|
|
|
|
|
#endif
|