summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/cms/cms_att.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/cms/cms_att.c')
-rw-r--r--src/lib/libcrypto/cms/cms_att.c211
1 files changed, 0 insertions, 211 deletions
diff --git a/src/lib/libcrypto/cms/cms_att.c b/src/lib/libcrypto/cms/cms_att.c
deleted file mode 100644
index b38c7c4699..0000000000
--- a/src/lib/libcrypto/cms/cms_att.c
+++ /dev/null
@@ -1,211 +0,0 @@
1/* $OpenBSD: cms_att.c,v 1.3 2014/06/12 15:49:28 deraadt Exp $ */
2/* Written by Dr Stephen N Henson (steve@openssl.org) for the OpenSSL
3 * project.
4 */
5/* ====================================================================
6 * Copyright (c) 2008 The OpenSSL Project. All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
10 * are met:
11 *
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 *
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in
17 * the documentation and/or other materials provided with the
18 * distribution.
19 *
20 * 3. All advertising materials mentioning features or use of this
21 * software must display the following acknowledgment:
22 * "This product includes software developed by the OpenSSL Project
23 * for use in the OpenSSL Toolkit. (http://www.OpenSSL.org/)"
24 *
25 * 4. The names "OpenSSL Toolkit" and "OpenSSL Project" must not be used to
26 * endorse or promote products derived from this software without
27 * prior written permission. For written permission, please contact
28 * licensing@OpenSSL.org.
29 *
30 * 5. Products derived from this software may not be called "OpenSSL"
31 * nor may "OpenSSL" appear in their names without prior written
32 * permission of the OpenSSL Project.
33 *
34 * 6. Redistributions of any form whatsoever must retain the following
35 * acknowledgment:
36 * "This product includes software developed by the OpenSSL Project
37 * for use in the OpenSSL Toolkit (http://www.OpenSSL.org/)"
38 *
39 * THIS SOFTWARE IS PROVIDED BY THE OpenSSL PROJECT ``AS IS'' AND ANY
40 * EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
42 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE OpenSSL PROJECT OR
43 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
44 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
45 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
46 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
47 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
48 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
49 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
50 * OF THE POSSIBILITY OF SUCH DAMAGE.
51 * ====================================================================
52 */
53
54#include <openssl/asn1t.h>
55#include <openssl/pem.h>
56#include <openssl/x509v3.h>
57#include <openssl/err.h>
58#include "cms.h"
59#include "cms_lcl.h"
60
61/* CMS SignedData Attribute utilities */
62
63int
64CMS_signed_get_attr_count(const CMS_SignerInfo *si)
65{
66 return X509at_get_attr_count(si->signedAttrs);
67}
68
69int
70CMS_signed_get_attr_by_NID(const CMS_SignerInfo *si, int nid, int lastpos)
71{
72 return X509at_get_attr_by_NID(si->signedAttrs, nid, lastpos);
73}
74
75int
76CMS_signed_get_attr_by_OBJ(const CMS_SignerInfo *si, ASN1_OBJECT *obj,
77 int lastpos)
78{
79 return X509at_get_attr_by_OBJ(si->signedAttrs, obj, lastpos);
80}
81
82X509_ATTRIBUTE *
83CMS_signed_get_attr(const CMS_SignerInfo *si, int loc)
84{
85 return X509at_get_attr(si->signedAttrs, loc);
86}
87
88X509_ATTRIBUTE *
89CMS_signed_delete_attr(CMS_SignerInfo *si, int loc)
90{
91 return X509at_delete_attr(si->signedAttrs, loc);
92}
93
94int
95CMS_signed_add1_attr(CMS_SignerInfo *si, X509_ATTRIBUTE *attr)
96{
97 if (X509at_add1_attr(&si->signedAttrs, attr))
98 return 1;
99 return 0;
100}
101
102int
103CMS_signed_add1_attr_by_OBJ(CMS_SignerInfo *si, const ASN1_OBJECT *obj,
104 int type, const void *bytes, int len)
105{
106 if (X509at_add1_attr_by_OBJ(&si->signedAttrs, obj, type, bytes, len))
107 return 1;
108 return 0;
109}
110
111int
112CMS_signed_add1_attr_by_NID(CMS_SignerInfo *si, int nid, int type,
113 const void *bytes, int len)
114{
115 if (X509at_add1_attr_by_NID(&si->signedAttrs, nid, type, bytes, len))
116 return 1;
117 return 0;
118}
119
120int
121CMS_signed_add1_attr_by_txt(CMS_SignerInfo *si, const char *attrname, int type,
122 const void *bytes, int len)
123{
124 if (X509at_add1_attr_by_txt(&si->signedAttrs, attrname, type,
125 bytes, len))
126 return 1;
127 return 0;
128}
129
130void *
131CMS_signed_get0_data_by_OBJ(CMS_SignerInfo *si, ASN1_OBJECT *oid, int lastpos,
132 int type)
133{
134 return X509at_get0_data_by_OBJ(si->signedAttrs, oid, lastpos, type);
135}
136
137int
138CMS_unsigned_get_attr_count(const CMS_SignerInfo *si)
139{
140 return X509at_get_attr_count(si->unsignedAttrs);
141}
142
143int
144CMS_unsigned_get_attr_by_NID(const CMS_SignerInfo *si, int nid, int lastpos)
145{
146 return X509at_get_attr_by_NID(si->unsignedAttrs, nid, lastpos);
147}
148
149int
150CMS_unsigned_get_attr_by_OBJ(const CMS_SignerInfo *si, ASN1_OBJECT *obj,
151 int lastpos)
152{
153 return X509at_get_attr_by_OBJ(si->unsignedAttrs, obj, lastpos);
154}
155
156X509_ATTRIBUTE *
157CMS_unsigned_get_attr(const CMS_SignerInfo *si, int loc)
158{
159 return X509at_get_attr(si->unsignedAttrs, loc);
160}
161
162X509_ATTRIBUTE *
163CMS_unsigned_delete_attr(CMS_SignerInfo *si, int loc)
164{
165 return X509at_delete_attr(si->unsignedAttrs, loc);
166}
167
168int
169CMS_unsigned_add1_attr(CMS_SignerInfo *si, X509_ATTRIBUTE *attr)
170{
171 if (X509at_add1_attr(&si->unsignedAttrs, attr))
172 return 1;
173 return 0;
174}
175
176int
177CMS_unsigned_add1_attr_by_OBJ(CMS_SignerInfo *si, const ASN1_OBJECT *obj,
178 int type, const void *bytes, int len)
179{
180 if (X509at_add1_attr_by_OBJ(&si->unsignedAttrs, obj, type, bytes, len))
181 return 1;
182 return 0;
183}
184
185int
186CMS_unsigned_add1_attr_by_NID(CMS_SignerInfo *si, int nid, int type,
187 const void *bytes, int len)
188{
189 if (X509at_add1_attr_by_NID(&si->unsignedAttrs, nid, type, bytes, len))
190 return 1;
191 return 0;
192}
193
194int
195CMS_unsigned_add1_attr_by_txt(CMS_SignerInfo *si, const char *attrname,
196 int type, const void *bytes, int len)
197{
198 if (X509at_add1_attr_by_txt(&si->unsignedAttrs, attrname, type,
199 bytes, len))
200 return 1;
201 return 0;
202}
203
204void *
205CMS_unsigned_get0_data_by_OBJ(CMS_SignerInfo *si, ASN1_OBJECT *oid,
206 int lastpos, int type)
207{
208 return X509at_get0_data_by_OBJ(si->unsignedAttrs, oid, lastpos, type);
209}
210
211/* Specific attribute cases */