diff options
| author | 2009-07-26 19:34:22 -0700 | |
|---|---|---|
| committer | 2009-07-26 19:34:22 -0700 | |
| commit | eea538c94f01f8054f69f059614f19400187a472 (patch) | |
| tree | 209a12dc8c8eaece15b8153d15e689c8c2147ab6 /src/userpref.h | |
| parent | 8ebfd7d8eea89bb27e4e6dbb1f37fd90d98b439c (diff) | |
| parent | 19c9750d670435ce430f0fc85a55faf127bdfbf9 (diff) | |
| download | libimobiledevice-eea538c94f01f8054f69f059614f19400187a472.tar.gz libimobiledevice-eea538c94f01f8054f69f059614f19400187a472.tar.bz2 | |
Merge commit 'martin-s/martin'
[#46 state:resolved]
Diffstat (limited to 'src/userpref.h')
| -rw-r--r-- | src/userpref.h | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/src/userpref.h b/src/userpref.h index deced04..414c093 100644 --- a/src/userpref.h +++ b/src/userpref.h | |||
| @@ -23,19 +23,21 @@ | |||
| 23 | #define USERPREF_H | 23 | #define USERPREF_H |
| 24 | 24 | ||
| 25 | #include <gnutls/gnutls.h> | 25 | #include <gnutls/gnutls.h> |
| 26 | #include "libiphone/libiphone.h" | ||
| 27 | 26 | ||
| 27 | #define USERPREF_E_SUCCESS 0 | ||
| 28 | #define USERPREF_E_INVALID_ARG -1 | ||
| 29 | #define USERPREF_E_INVALID_CONF -2 | ||
| 30 | #define USERPREF_E_SSL_ERROR -3 | ||
| 28 | 31 | ||
| 29 | iphone_error_t get_keys_and_certs(gnutls_x509_privkey_t root_privkey, gnutls_x509_crt_t root_crt, gnutls_x509_privkey_t host_privkey, gnutls_x509_crt_t host_crt); | 32 | #define USERPREF_E_UNKNOWN_ERROR -256 |
| 30 | 33 | ||
| 31 | iphone_error_t get_certs_as_pem(gnutls_datum_t *pem_root_cert, gnutls_datum_t *pem_host_cert); | 34 | typedef int16_t userpref_error_t; |
| 32 | 35 | ||
| 33 | char *get_host_id(void); | 36 | userpref_error_t userpref_get_keys_and_certs(gnutls_x509_privkey_t root_privkey, gnutls_x509_crt_t root_crt, gnutls_x509_privkey_t host_privkey, gnutls_x509_crt_t host_crt); |
| 37 | userpref_error_t userpref_set_keys_and_certs(gnutls_datum_t * root_key, gnutls_datum_t * root_cert, gnutls_datum_t * host_key, gnutls_datum_t * host_cert); | ||
| 38 | userpref_error_t userpref_get_certs_as_pem(gnutls_datum_t *pem_root_cert, gnutls_datum_t *pem_host_cert); | ||
| 39 | userpref_error_t userpref_set_device_public_key(char *uuid, gnutls_datum_t public_key); | ||
| 40 | int userpref_has_device_public_key(char *uuid); | ||
| 41 | void userpref_get_host_id(char **host_id); | ||
| 34 | 42 | ||
| 35 | int is_device_known(char *uid); | ||
| 36 | |||
| 37 | int store_device_public_key(char *uid, gnutls_datum_t public_key); | ||
| 38 | |||
| 39 | int init_config_file( gnutls_datum_t * root_key, gnutls_datum_t * host_key, gnutls_datum_t * root_cert, | ||
| 40 | gnutls_datum_t * host_cert); | ||
| 41 | #endif | 43 | #endif |
