diff options
author | 2013-11-18 22:51:28 +0100 | |
---|---|---|
committer | 2013-11-18 22:51:28 +0100 | |
commit | 78a239bf2c64c9e37c21b2ddabbc0d76ec599afb (patch) | |
tree | 46597ee9b86be20f315d6b271fbd79ccdc835594 /src/recovery.h | |
parent | 5a6dcf255deb905e23fbedbb6dcd1e3eeabd5825 (diff) | |
download | idevicerestore-78a239bf2c64c9e37c21b2ddabbc0d76ec599afb.tar.gz idevicerestore-78a239bf2c64c9e37c21b2ddabbc0d76ec599afb.tar.bz2 |
Split nonce retrieval into ApNonce and SepNonce for DFU and Recovery modes
Diffstat (limited to 'src/recovery.h')
-rw-r--r-- | src/recovery.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/recovery.h b/src/recovery.h index d9b4597..d1fd71e 100644 --- a/src/recovery.h +++ b/src/recovery.h @@ -54,7 +54,8 @@ int recovery_send_reset(struct idevicerestore_client_t* client); int recovery_send_ticket(struct idevicerestore_client_t* client); int recovery_set_autoboot(struct idevicerestore_client_t* client, int enable); int recovery_get_ecid(struct idevicerestore_client_t* client, uint64_t* ecid); -int recovery_get_nonce(struct idevicerestore_client_t* client, unsigned char** nonce, int* nonce_size); +int recovery_get_ap_nonce(struct idevicerestore_client_t* client, unsigned char** nonce, int* nonce_size); +int recovery_get_sep_nonce(struct idevicerestore_client_t* client, unsigned char** nonce, int* nonce_size); int recovery_get_cpid(struct idevicerestore_client_t* client, uint32_t* cpid); int recovery_get_bdid(struct idevicerestore_client_t* client, uint32_t* bdid); |