v3_int.c 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /*
  2. * Copyright 1999-2021 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. #include <stdio.h>
  10. #include "internal/cryptlib.h"
  11. #include <openssl/x509v3.h>
  12. #include "ext_dat.h"
  13. const X509V3_EXT_METHOD ossl_v3_crl_num = {
  14. NID_crl_number, 0, ASN1_ITEM_ref(ASN1_INTEGER),
  15. 0, 0, 0, 0,
  16. (X509V3_EXT_I2S)i2s_ASN1_INTEGER,
  17. 0,
  18. 0, 0, 0, 0, NULL
  19. };
  20. const X509V3_EXT_METHOD ossl_v3_delta_crl = {
  21. NID_delta_crl, 0, ASN1_ITEM_ref(ASN1_INTEGER),
  22. 0, 0, 0, 0,
  23. (X509V3_EXT_I2S)i2s_ASN1_INTEGER,
  24. 0,
  25. 0, 0, 0, 0, NULL
  26. };
  27. static void *s2i_asn1_int(X509V3_EXT_METHOD *meth, X509V3_CTX *ctx,
  28. const char *value)
  29. {
  30. return s2i_ASN1_INTEGER(meth, value);
  31. }
  32. const X509V3_EXT_METHOD ossl_v3_inhibit_anyp = {
  33. NID_inhibit_any_policy, 0, ASN1_ITEM_ref(ASN1_INTEGER),
  34. 0, 0, 0, 0,
  35. (X509V3_EXT_I2S)i2s_ASN1_INTEGER,
  36. (X509V3_EXT_S2I)s2i_asn1_int,
  37. 0, 0, 0, 0, NULL
  38. };