1/*
2 * Copyright 2000-2020 The OpenSSL Project Authors. All Rights Reserved.
3 *
4 * Licensed under the Apache License 2.0 (the "License").  You may not use
5 * this file except in compliance with the License.  You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
8 */
9
10/* We need to use the low level ASN1 items until they are removed */
11#define OPENSSL_SUPPRESS_DEPRECATED
12
13#include <stdio.h>
14#include "internal/cryptlib.h"
15#include <openssl/asn1.h>
16#include <openssl/asn1t.h>
17#include <openssl/cms.h>
18#include <openssl/dh.h>
19#include <openssl/ocsp.h>
20#include <openssl/pkcs7.h>
21#include <openssl/pkcs12.h>
22#include <openssl/rsa.h>
23#include <openssl/x509v3.h>
24
25#include "asn1_item_list.h"
26
27const ASN1_ITEM *ASN1_ITEM_lookup(const char *name)
28{
29    size_t i;
30
31    for (i = 0; i < OSSL_NELEM(asn1_item_list); i++) {
32        const ASN1_ITEM *it = ASN1_ITEM_ptr(asn1_item_list[i]);
33
34        if (strcmp(it->sname, name) == 0)
35            return it;
36    }
37    return NULL;
38}
39
40const ASN1_ITEM *ASN1_ITEM_get(size_t i)
41{
42    if (i >= OSSL_NELEM(asn1_item_list))
43        return NULL;
44    return ASN1_ITEM_ptr(asn1_item_list[i]);
45}
46