asn1_item_list.c 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. /* We need to use the low level ASN1 items until they are removed */
  10. #define OPENSSL_SUPPRESS_DEPRECATED
  11. #include <stdio.h>
  12. #include "internal/cryptlib.h"
  13. #include <openssl/asn1.h>
  14. #include <openssl/asn1t.h>
  15. #include <openssl/cms.h>
  16. #include <openssl/dh.h>
  17. #include <openssl/ocsp.h>
  18. #include <openssl/pkcs7.h>
  19. #include <openssl/pkcs12.h>
  20. #include <openssl/rsa.h>
  21. #include <openssl/x509v3.h>
  22. #include <openssl/x509_acert.h>
  23. #include "asn1_item_list.h"
  24. const ASN1_ITEM *ASN1_ITEM_lookup(const char *name)
  25. {
  26. size_t i;
  27. for (i = 0; i < OSSL_NELEM(asn1_item_list); i++) {
  28. const ASN1_ITEM *it = ASN1_ITEM_ptr(asn1_item_list[i]);
  29. if (strcmp(it->sname, name) == 0)
  30. return it;
  31. }
  32. return NULL;
  33. }
  34. const ASN1_ITEM *ASN1_ITEM_get(size_t i)
  35. {
  36. if (i >= OSSL_NELEM(asn1_item_list))
  37. return NULL;
  38. return ASN1_ITEM_ptr(asn1_item_list[i]);
  39. }