dav/config.h

changeset 5
88625853ae74
child 36
c8755c87ce7f
equal deleted inserted replaced
4:ae5a98f0545c 5:88625853ae74
1 /*
2 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
3 *
4 * Copyright 2013 Olaf Wintermann. All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are met:
8 *
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 *
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
20 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26 * POSSIBILITY OF SUCH DAMAGE.
27 */
28
29 #ifndef CONFIG_H
30 #define CONFIG_H
31
32 #include <stdbool.h>
33
34 #ifdef __cplusplus
35 extern "C" {
36 #endif
37
38 typedef struct Repository Repository;
39 typedef struct Key Key;
40
41 enum key_type {
42 KEY_AES128 = 0,
43 KEY_AES256,
44 KEY_PASSWORD
45 };
46
47 typedef enum key_type KeyType;
48
49 struct Repository {
50 char *name;
51 char *url;
52 char *user;
53 char *password;
54 char *default_key;
55 bool encrypt;
56 bool decrypt;
57 bool store_key_property;
58 };
59
60 struct Key {
61 char *name;
62 KeyType type;
63 void *data;
64 size_t length;
65 };
66
67 void load_config();
68 void load_repository(xmlNode *reponode);
69 void load_key(xmlNode *keynode);
70 sstr_t load_key_file(char *filename);
71
72 Repository* get_repository(char *name);
73 Key* get_key(char *name);
74
75 #ifdef __cplusplus
76 }
77 #endif
78
79 #endif /* CONFIG_H */
80

mercurial