summaryrefslogtreecommitdiffstats
path: root/src/userpref.h
diff options
context:
space:
mode:
authorGravatar Martin Szulecki2013-04-25 17:43:54 +0100
committerGravatar Martin Szulecki2013-04-25 17:43:54 +0100
commit4748e1ac72ede8ba1f7a28ec8c1b8d5bb0f0afd3 (patch)
tree708d1ec3ee0fcc3a3f49be45457c5f641c108dc2 /src/userpref.h
parent927c34ee8e6974a34b1dfd7d1a4fde5eabbeca7a (diff)
downloadlibimobiledevice-4748e1ac72ede8ba1f7a28ec8c1b8d5bb0f0afd3.tar.gz
libimobiledevice-4748e1ac72ede8ba1f7a28ec8c1b8d5bb0f0afd3.tar.bz2
common: Move debug and userpref code into libinternalcommon
Diffstat (limited to 'src/userpref.h')
-rw-r--r--src/userpref.h73
1 files changed, 0 insertions, 73 deletions
diff --git a/src/userpref.h b/src/userpref.h
deleted file mode 100644
index 14db985..0000000
--- a/src/userpref.h
+++ /dev/null
@@ -1,73 +0,0 @@
1/*
2 * userpref.h
3 * contains methods to access user specific certificates IDs and more.
4 *
5 * Copyright (c) 2008 Jonathan Beck All Rights Reserved.
6 *
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
11 *
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
16 *
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
22#ifndef __USERPREF_H
23#define __USERPREF_H
24
25#ifdef HAVE_CONFIG_H
26#include <config.h>
27#endif
28
29#ifdef HAVE_OPENSSL
30typedef struct {
31 unsigned char *data;
32 unsigned int size;
33} key_data_t;
34#else
35#include <gnutls/gnutls.h>
36typedef gnutls_datum_t key_data_t;
37#endif
38
39#include <stdint.h>
40
41#ifndef LIBIMOBILEDEVICE_INTERNAL
42#ifdef WIN32
43#define LIBIMOBILEDEVICE_INTERNAL
44#else
45#define LIBIMOBILEDEVICE_INTERNAL __attribute__((visibility("hidden")))
46#endif
47#endif
48
49#define USERPREF_E_SUCCESS 0
50#define USERPREF_E_INVALID_ARG -1
51#define USERPREF_E_INVALID_CONF -2
52#define USERPREF_E_SSL_ERROR -3
53#define USERPREF_E_READ_ERROR -4
54#define USERPREF_E_WRITE_ERROR -5
55
56#define USERPREF_E_UNKNOWN_ERROR -256
57
58typedef int16_t userpref_error_t;
59
60#ifdef HAVE_OPENSSL
61LIBIMOBILEDEVICE_INTERNAL userpref_error_t userpref_get_keys_and_certs(key_data_t* root_privkey, key_data_t* root_crt, key_data_t* host_privkey, key_data_t* host_crt);
62#else
63LIBIMOBILEDEVICE_INTERNAL 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);
64#endif
65LIBIMOBILEDEVICE_INTERNAL userpref_error_t userpref_set_keys_and_certs(key_data_t * root_key, key_data_t * root_cert, key_data_t * host_key, key_data_t * host_cert);
66LIBIMOBILEDEVICE_INTERNAL userpref_error_t userpref_get_certs_as_pem(key_data_t *pem_root_cert, key_data_t *pem_host_cert);
67LIBIMOBILEDEVICE_INTERNAL userpref_error_t userpref_set_device_public_key(const char *udid, key_data_t public_key);
68userpref_error_t userpref_remove_device_public_key(const char *udid);
69LIBIMOBILEDEVICE_INTERNAL int userpref_has_device_public_key(const char *udid);
70userpref_error_t userpref_get_paired_udids(char ***list, unsigned int *count);
71void userpref_get_host_id(char **host_id);
72
73#endif