summaryrefslogtreecommitdiffstats
path: root/src/idevicerestore.c
diff options
context:
space:
mode:
authorGravatar Nikias Bassen2012-02-02 16:24:44 +0100
committerGravatar Nikias Bassen2012-02-02 16:24:44 +0100
commit182fd0b9993aec0f52fb22631ebf0e7abccb921d (patch)
treee3e0307032296f63afde05764720294496b16b47 /src/idevicerestore.c
parent0f1764d69aad6befec56de7ecd221a413ed363db (diff)
downloadidevicerestore-182fd0b9993aec0f52fb22631ebf0e7abccb921d.tar.gz
idevicerestore-182fd0b9993aec0f52fb22631ebf0e7abccb921d.tar.bz2
added nonce and nonce_size parameters to get_shsh_blobs function
Diffstat (limited to 'src/idevicerestore.c')
-rw-r--r--src/idevicerestore.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/idevicerestore.c b/src/idevicerestore.c
index c4ec2b8..e447903 100644
--- a/src/idevicerestore.c
+++ b/src/idevicerestore.c
@@ -215,7 +215,7 @@ int main(int argc, char* argv[]) {
}
info("Found ECID %llu\n", (long long unsigned int)client->ecid);
- if (get_shsh_blobs(client, client->ecid, build_identity, &client->tss) < 0) {
+ if (get_shsh_blobs(client, client->ecid, NULL, 0, build_identity, &client->tss) < 0) {
error("ERROR: Unable to get SHSH blobs for this device\n");
return -1;
}
@@ -552,12 +552,12 @@ plist_t build_manifest_get_build_identity(plist_t build_manifest, uint32_t ident
return plist_copy(build_identity);
}
-int get_shsh_blobs(struct idevicerestore_client_t* client, uint64_t ecid, plist_t build_identity, plist_t* tss) {
+int get_shsh_blobs(struct idevicerestore_client_t* client, uint64_t ecid, unsigned char* nonce, int nonce_size, plist_t build_identity, plist_t* tss) {
plist_t request = NULL;
plist_t response = NULL;
*tss = NULL;
- request = tss_create_request(build_identity, ecid, NULL, 0);
+ request = tss_create_request(build_identity, ecid, nonce, nonce_size);
if (request == NULL) {
error("ERROR: Unable to create TSS request\n");
return -1;