155714Skris/* crypto/x509/x509_ext.c */
255714Skris/* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com)
355714Skris * All rights reserved.
455714Skris *
555714Skris * This package is an SSL implementation written
655714Skris * by Eric Young (eay@cryptsoft.com).
755714Skris * The implementation was written so as to conform with Netscapes SSL.
8280304Sjkim *
955714Skris * This library is free for commercial and non-commercial use as long as
1055714Skris * the following conditions are aheared to.  The following conditions
1155714Skris * apply to all code found in this distribution, be it the RC4, RSA,
1255714Skris * lhash, DES, etc., code; not just the SSL code.  The SSL documentation
1355714Skris * included with this distribution is covered by the same copyright terms
1455714Skris * except that the holder is Tim Hudson (tjh@cryptsoft.com).
15280304Sjkim *
1655714Skris * Copyright remains Eric Young's, and as such any Copyright notices in
1755714Skris * the code are not to be removed.
1855714Skris * If this package is used in a product, Eric Young should be given attribution
1955714Skris * as the author of the parts of the library used.
2055714Skris * This can be in the form of a textual message at program startup or
2155714Skris * in documentation (online or textual) provided with the package.
22280304Sjkim *
2355714Skris * Redistribution and use in source and binary forms, with or without
2455714Skris * modification, are permitted provided that the following conditions
2555714Skris * are met:
2655714Skris * 1. Redistributions of source code must retain the copyright
2755714Skris *    notice, this list of conditions and the following disclaimer.
2855714Skris * 2. Redistributions in binary form must reproduce the above copyright
2955714Skris *    notice, this list of conditions and the following disclaimer in the
3055714Skris *    documentation and/or other materials provided with the distribution.
3155714Skris * 3. All advertising materials mentioning features or use of this software
3255714Skris *    must display the following acknowledgement:
3355714Skris *    "This product includes cryptographic software written by
3455714Skris *     Eric Young (eay@cryptsoft.com)"
3555714Skris *    The word 'cryptographic' can be left out if the rouines from the library
3655714Skris *    being used are not cryptographic related :-).
37280304Sjkim * 4. If you include any Windows specific code (or a derivative thereof) from
3855714Skris *    the apps directory (application code) you must include an acknowledgement:
3955714Skris *    "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
40280304Sjkim *
4155714Skris * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
4255714Skris * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
4355714Skris * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
4455714Skris * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
4555714Skris * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
4655714Skris * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
4755714Skris * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
4855714Skris * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
4955714Skris * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
5055714Skris * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
5155714Skris * SUCH DAMAGE.
52280304Sjkim *
5355714Skris * The licence and distribution terms for any publically available version or
5455714Skris * derivative of this code cannot be changed.  i.e. this code cannot simply be
5555714Skris * copied and put under another distribution licence
5655714Skris * [including the GNU Public Licence.]
5755714Skris */
5855714Skris
5955714Skris#include <stdio.h>
6055714Skris#include <openssl/stack.h>
6155714Skris#include "cryptlib.h"
6255714Skris#include <openssl/asn1.h>
6355714Skris#include <openssl/objects.h>
6455714Skris#include <openssl/evp.h>
6555714Skris#include <openssl/x509.h>
6659191Skris#include <openssl/x509v3.h>
6755714Skris
6855714Skrisint X509_CRL_get_ext_count(X509_CRL *x)
69280304Sjkim{
70280304Sjkim    return (X509v3_get_ext_count(x->crl->extensions));
71280304Sjkim}
7255714Skris
7355714Skrisint X509_CRL_get_ext_by_NID(X509_CRL *x, int nid, int lastpos)
74280304Sjkim{
75280304Sjkim    return (X509v3_get_ext_by_NID(x->crl->extensions, nid, lastpos));
76280304Sjkim}
7755714Skris
7855714Skrisint X509_CRL_get_ext_by_OBJ(X509_CRL *x, ASN1_OBJECT *obj, int lastpos)
79280304Sjkim{
80280304Sjkim    return (X509v3_get_ext_by_OBJ(x->crl->extensions, obj, lastpos));
81280304Sjkim}
8255714Skris
8355714Skrisint X509_CRL_get_ext_by_critical(X509_CRL *x, int crit, int lastpos)
84280304Sjkim{
85280304Sjkim    return (X509v3_get_ext_by_critical(x->crl->extensions, crit, lastpos));
86280304Sjkim}
8755714Skris
8855714SkrisX509_EXTENSION *X509_CRL_get_ext(X509_CRL *x, int loc)
89280304Sjkim{
90280304Sjkim    return (X509v3_get_ext(x->crl->extensions, loc));
91280304Sjkim}
9255714Skris
9355714SkrisX509_EXTENSION *X509_CRL_delete_ext(X509_CRL *x, int loc)
94280304Sjkim{
95280304Sjkim    return (X509v3_delete_ext(x->crl->extensions, loc));
96280304Sjkim}
9755714Skris
9859191Skrisvoid *X509_CRL_get_ext_d2i(X509_CRL *x, int nid, int *crit, int *idx)
9959191Skris{
100280304Sjkim    return X509V3_get_d2i(x->crl->extensions, nid, crit, idx);
10159191Skris}
10259191Skris
103109998Smarkmint X509_CRL_add1_ext_i2d(X509_CRL *x, int nid, void *value, int crit,
104280304Sjkim                          unsigned long flags)
105109998Smarkm{
106280304Sjkim    return X509V3_add1_i2d(&x->crl->extensions, nid, value, crit, flags);
107109998Smarkm}
108109998Smarkm
10955714Skrisint X509_CRL_add_ext(X509_CRL *x, X509_EXTENSION *ex, int loc)
110280304Sjkim{
111280304Sjkim    return (X509v3_add_ext(&(x->crl->extensions), ex, loc) != NULL);
112280304Sjkim}
11355714Skris
11455714Skrisint X509_get_ext_count(X509 *x)
115280304Sjkim{
116280304Sjkim    return (X509v3_get_ext_count(x->cert_info->extensions));
117280304Sjkim}
11855714Skris
11955714Skrisint X509_get_ext_by_NID(X509 *x, int nid, int lastpos)
120280304Sjkim{
121280304Sjkim    return (X509v3_get_ext_by_NID(x->cert_info->extensions, nid, lastpos));
122280304Sjkim}
12355714Skris
12455714Skrisint X509_get_ext_by_OBJ(X509 *x, ASN1_OBJECT *obj, int lastpos)
125280304Sjkim{
126280304Sjkim    return (X509v3_get_ext_by_OBJ(x->cert_info->extensions, obj, lastpos));
127280304Sjkim}
12855714Skris
12955714Skrisint X509_get_ext_by_critical(X509 *x, int crit, int lastpos)
130280304Sjkim{
131280304Sjkim    return (X509v3_get_ext_by_critical
132280304Sjkim            (x->cert_info->extensions, crit, lastpos));
133280304Sjkim}
13455714Skris
13555714SkrisX509_EXTENSION *X509_get_ext(X509 *x, int loc)
136280304Sjkim{
137280304Sjkim    return (X509v3_get_ext(x->cert_info->extensions, loc));
138280304Sjkim}
13955714Skris
14055714SkrisX509_EXTENSION *X509_delete_ext(X509 *x, int loc)
141280304Sjkim{
142280304Sjkim    return (X509v3_delete_ext(x->cert_info->extensions, loc));
143280304Sjkim}
14455714Skris
14555714Skrisint X509_add_ext(X509 *x, X509_EXTENSION *ex, int loc)
146280304Sjkim{
147280304Sjkim    return (X509v3_add_ext(&(x->cert_info->extensions), ex, loc) != NULL);
148280304Sjkim}
14955714Skris
15059191Skrisvoid *X509_get_ext_d2i(X509 *x, int nid, int *crit, int *idx)
15159191Skris{
152280304Sjkim    return X509V3_get_d2i(x->cert_info->extensions, nid, crit, idx);
15359191Skris}
15459191Skris
155109998Smarkmint X509_add1_ext_i2d(X509 *x, int nid, void *value, int crit,
156280304Sjkim                      unsigned long flags)
157109998Smarkm{
158280304Sjkim    return X509V3_add1_i2d(&x->cert_info->extensions, nid, value, crit,
159280304Sjkim                           flags);
160109998Smarkm}
161109998Smarkm
16255714Skrisint X509_REVOKED_get_ext_count(X509_REVOKED *x)
163280304Sjkim{
164280304Sjkim    return (X509v3_get_ext_count(x->extensions));
165280304Sjkim}
16655714Skris
16755714Skrisint X509_REVOKED_get_ext_by_NID(X509_REVOKED *x, int nid, int lastpos)
168280304Sjkim{
169280304Sjkim    return (X509v3_get_ext_by_NID(x->extensions, nid, lastpos));
170280304Sjkim}
17155714Skris
17255714Skrisint X509_REVOKED_get_ext_by_OBJ(X509_REVOKED *x, ASN1_OBJECT *obj,
173280304Sjkim                                int lastpos)
174280304Sjkim{
175280304Sjkim    return (X509v3_get_ext_by_OBJ(x->extensions, obj, lastpos));
176280304Sjkim}
17755714Skris
17855714Skrisint X509_REVOKED_get_ext_by_critical(X509_REVOKED *x, int crit, int lastpos)
179280304Sjkim{
180280304Sjkim    return (X509v3_get_ext_by_critical(x->extensions, crit, lastpos));
181280304Sjkim}
18255714Skris
18355714SkrisX509_EXTENSION *X509_REVOKED_get_ext(X509_REVOKED *x, int loc)
184280304Sjkim{
185280304Sjkim    return (X509v3_get_ext(x->extensions, loc));
186280304Sjkim}
18755714Skris
18855714SkrisX509_EXTENSION *X509_REVOKED_delete_ext(X509_REVOKED *x, int loc)
189280304Sjkim{
190280304Sjkim    return (X509v3_delete_ext(x->extensions, loc));
191280304Sjkim}
19255714Skris
19355714Skrisint X509_REVOKED_add_ext(X509_REVOKED *x, X509_EXTENSION *ex, int loc)
194280304Sjkim{
195280304Sjkim    return (X509v3_add_ext(&(x->extensions), ex, loc) != NULL);
196280304Sjkim}
19755714Skris
19859191Skrisvoid *X509_REVOKED_get_ext_d2i(X509_REVOKED *x, int nid, int *crit, int *idx)
19959191Skris{
200280304Sjkim    return X509V3_get_d2i(x->extensions, nid, crit, idx);
20159191Skris}
20259191Skris
203109998Smarkmint X509_REVOKED_add1_ext_i2d(X509_REVOKED *x, int nid, void *value, int crit,
204280304Sjkim                              unsigned long flags)
205109998Smarkm{
206280304Sjkim    return X509V3_add1_i2d(&x->extensions, nid, value, crit, flags);
207109998Smarkm}
208109998Smarkm
20955714SkrisIMPLEMENT_STACK_OF(X509_EXTENSION)
210280304Sjkim
21155714SkrisIMPLEMENT_ASN1_SET_OF(X509_EXTENSION)
212