mirror of
https://github.com/tihmstar/futurerestore.git
synced 2025-01-02 19:25:31 +00:00
printing apnonce
This commit is contained in:
parent
58baea2135
commit
99da4c3352
|
@ -154,6 +154,13 @@ plist_t futurerestore::nonceMatchesApTickets(){
|
|||
int realNonceSize = 0;
|
||||
recovery_get_ap_nonce(_client, &realnonce, &realNonceSize);
|
||||
|
||||
info("Got APNonce from device: ");
|
||||
int i = 0;
|
||||
for (i = 0; i < realNonceSize; i++) {
|
||||
info("%02x ", ((unsigned char *)realnonce)[i]);
|
||||
}
|
||||
info("\n");
|
||||
|
||||
vector<const char*>nonces;
|
||||
|
||||
if (_client->image4supported){
|
||||
|
|
Loading…
Reference in a new issue