diff options
| author | 2008-12-12 23:39:33 +0100 | |
|---|---|---|
| committer | 2008-12-12 23:39:33 +0100 | |
| commit | 3d8ba053deeacd74e621469d3d45d1db38ee411a (patch) | |
| tree | 9c2010c9da179f96d55988f19c861301a68e5eb4 /src/lockdown.h | |
| parent | 9ca887308d59e6cb5bf684f9f3bd968118e8014f (diff) | |
| download | libimobiledevice-3d8ba053deeacd74e621469d3d45d1db38ee411a.tar.gz libimobiledevice-3d8ba053deeacd74e621469d3d45d1db38ee411a.tar.bz2 | |
Change from Base64 encoded buffers to real buffers. Base64 decoding/encoding only happens in xml plists.
Diffstat (limited to 'src/lockdown.h')
| -rw-r--r-- | src/lockdown.h | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/lockdown.h b/src/lockdown.h index b75d4bf..8b3dd41 100644 --- a/src/lockdown.h +++ b/src/lockdown.h | |||
| @@ -42,13 +42,14 @@ struct iphone_lckd_client_int { | |||
| 42 | 42 | ||
| 43 | iphone_lckd_client_t new_lockdownd_client(iphone_device_t phone); | 43 | iphone_lckd_client_t new_lockdownd_client(iphone_device_t phone); |
| 44 | iphone_error_t lockdownd_hello(iphone_lckd_client_t control); | 44 | iphone_error_t lockdownd_hello(iphone_lckd_client_t control); |
| 45 | iphone_error_t lockdownd_generic_get_value(iphone_lckd_client_t control, char *req_key, char *req_string, char **value); | 45 | iphone_error_t lockdownd_generic_get_value(iphone_lckd_client_t control, char *req_key, char *req_string, |
| 46 | gnutls_datum_t * value); | ||
| 46 | iphone_error_t lockdownd_get_device_uid(iphone_lckd_client_t control, char **uid); | 47 | iphone_error_t lockdownd_get_device_uid(iphone_lckd_client_t control, char **uid); |
| 47 | iphone_error_t lockdownd_get_device_public_key(iphone_lckd_client_t control, char **public_key); | 48 | iphone_error_t lockdownd_get_device_public_key(iphone_lckd_client_t control, gnutls_datum_t * public_key); |
| 48 | 49 | ||
| 49 | iphone_error_t lockdownd_gen_pair_cert(char *public_key_b64, char **device_cert_b64, char **host_cert_b64, | 50 | iphone_error_t lockdownd_gen_pair_cert(gnutls_datum_t public_key, gnutls_datum_t * device_cert, |
| 50 | char **root_cert_b64); | 51 | gnutls_datum_t * host_cert, gnutls_datum_t * root_cert); |
| 51 | iphone_error_t lockdownd_pair_device(iphone_lckd_client_t control, char *public_key, char *host_id); | 52 | iphone_error_t lockdownd_pair_device(iphone_lckd_client_t control, char *uid, char *host_id); |
| 52 | void lockdownd_close(iphone_lckd_client_t control); | 53 | void lockdownd_close(iphone_lckd_client_t control); |
| 53 | 54 | ||
| 54 | // SSL functions | 55 | // SSL functions |
