diff options
author | 2013-11-18 18:17:31 +0100 | |
---|---|---|
committer | 2013-11-18 18:17:31 +0100 | |
commit | 8407a14a1884c386cf5277dec53ecb067c34fac2 (patch) | |
tree | 288b2ffe52f51b878335b2aac3d591329a3abedc /src/normal.h | |
parent | e12bd5fc5c9b59e01288dbf0e8e1edc32aa03bf0 (diff) | |
download | idevicerestore-8407a14a1884c386cf5277dec53ecb067c34fac2.tar.gz idevicerestore-8407a14a1884c386cf5277dec53ecb067c34fac2.tar.bz2 |
normal: Split normal_get_nonce() into ApNonce and SEPNonce getters
Diffstat (limited to 'src/normal.h')
-rw-r--r-- | src/normal.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/normal.h b/src/normal.h index e210128..cbbac2b 100644 --- a/src/normal.h +++ b/src/normal.h @@ -49,7 +49,8 @@ int normal_enter_recovery(struct idevicerestore_client_t* client); int normal_get_cpid(struct idevicerestore_client_t* client, uint32_t* cpid); int normal_get_bdid(struct idevicerestore_client_t* client, uint32_t* bdid); int normal_get_ecid(struct idevicerestore_client_t* client, uint64_t* ecid); -int normal_get_nonce(struct idevicerestore_client_t* client, unsigned char** nonce, int* nonce_size); +int normal_get_ap_nonce(struct idevicerestore_client_t* client, unsigned char** nonce, int* nonce_size); +int normal_get_sep_nonce(struct idevicerestore_client_t* client, unsigned char** nonce, int* nonce_size); #ifdef __cplusplus } |