f82f2877f6c6a71f26ab6a360ee97fd83f108bb9
[tprouty/samba.git] / source / heimdal / lib / hx509 / peer.c
1 /*
2  * Copyright (c) 2006 Kungliga Tekniska Högskolan
3  * (Royal Institute of Technology, Stockholm, Sweden). 
4  * 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 
8  * are met: 
9  *
10  * 1. Redistributions of source code must retain the above copyright 
11  *    notice, this list of conditions and the following disclaimer. 
12  *
13  * 2. Redistributions in binary form must reproduce the above copyright 
14  *    notice, this list of conditions and the following disclaimer in the 
15  *    documentation and/or other materials provided with the distribution. 
16  *
17  * 3. Neither the name of the Institute nor the names of its contributors 
18  *    may be used to endorse or promote products derived from this software 
19  *    without specific prior written permission. 
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND 
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE 
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 
31  * SUCH DAMAGE. 
32  */
33
34 #include "hx_locl.h"
35 RCSID("$Id: peer.c,v 1.1 2006/11/26 15:49:01 lha Exp $");
36
37 int
38 hx509_peer_info_alloc(hx509_context context, hx509_peer_info *peer)
39 {
40     *peer = calloc(1, sizeof(**peer));
41     if (*peer == NULL) {
42         hx509_set_error_string(context, 0, ENOMEM, "out of memory");
43         return ENOMEM;
44     }
45     return 0;
46 }
47
48
49 static void
50 free_cms_alg(hx509_peer_info peer)
51 {
52     if (peer->val) {
53         size_t i;
54         for (i = 0; i < peer->len; i++)
55             free_AlgorithmIdentifier(&peer->val[i]);
56         free(peer->val);
57         peer->val = NULL;
58         peer->len = 0;
59     }
60 }
61
62 int
63 hx509_peer_info_free(hx509_peer_info peer)
64 {
65     if (peer->cert)
66         hx509_cert_free(peer->cert);
67     free_cms_alg(peer);
68     memset(peer, 0, sizeof(*peer));
69     return 0;
70 }
71
72 int
73 hx509_peer_info_set_cert(hx509_peer_info peer,
74                          hx509_cert cert)
75 {
76     if (peer->cert)
77         hx509_cert_free(peer->cert);
78     peer->cert = hx509_cert_ref(cert);
79     return 0;
80 }
81
82 int
83 hx509_peer_info_set_cms_algs(hx509_context context,
84                              hx509_peer_info peer,
85                              const AlgorithmIdentifier *val,
86                              size_t len)
87 {
88     size_t i;
89
90     free_cms_alg(peer);
91
92     peer->val = calloc(len, sizeof(*peer->val));
93     if (peer->val == NULL) {
94         peer->len = 0;
95         hx509_set_error_string(context, 0, ENOMEM, "out of memory");
96         return ENOMEM;
97     }
98     peer->len = len;
99     for (i = 0; i < len; i++) {
100         int ret;
101         ret = copy_AlgorithmIdentifier(&val[i], &peer->val[i]);
102         if (ret) {
103             hx509_clear_error_string(context);
104             free_cms_alg(peer);
105             return ret;
106         }
107     }
108     return 0;
109 }
110
111 #if 0
112
113 /*
114  * S/MIME
115  */
116
117 int
118 hx509_peer_info_parse_smime(hx509_peer_info peer,
119                             const heim_octet_string *data)
120 {
121     return 0;
122 }
123
124 int
125 hx509_peer_info_unparse_smime(hx509_peer_info peer,
126                               heim_octet_string *data)
127 {
128     return 0;
129 }
130
131 /*
132  * For storing hx509_peer_info to be able to cache them.
133  */
134
135 int
136 hx509_peer_info_parse(hx509_peer_info peer,
137                       const heim_octet_string *data)
138 {
139     return 0;
140 }
141
142 int
143 hx509_peer_info_unparse(hx509_peer_info peer,
144                      heim_octet_string *data)
145 {
146     return 0;
147 }
148 #endif