t_crl.c 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /*
  2. * Copyright 1999-2016 The OpenSSL Project Authors. All Rights Reserved.
  3. *
  4. * Licensed under the OpenSSL license (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/buffer.h>
  12. #include <openssl/bn.h>
  13. #include <openssl/objects.h>
  14. #include <openssl/x509.h>
  15. #include <openssl/x509v3.h>
  16. #ifndef OPENSSL_NO_STDIO
  17. int X509_CRL_print_fp(FILE *fp, X509_CRL *x)
  18. {
  19. BIO *b;
  20. int ret;
  21. if ((b = BIO_new(BIO_s_file())) == NULL) {
  22. X509err(X509_F_X509_CRL_PRINT_FP, ERR_R_BUF_LIB);
  23. return (0);
  24. }
  25. BIO_set_fp(b, fp, BIO_NOCLOSE);
  26. ret = X509_CRL_print(b, x);
  27. BIO_free(b);
  28. return (ret);
  29. }
  30. #endif
  31. int X509_CRL_print(BIO *out, X509_CRL *x)
  32. {
  33. return X509_CRL_print_ex(out, x, XN_FLAG_COMPAT);
  34. }
  35. int X509_CRL_print_ex(BIO *out, X509_CRL *x, unsigned long nmflag)
  36. {
  37. STACK_OF(X509_REVOKED) *rev;
  38. X509_REVOKED *r;
  39. const X509_ALGOR *sig_alg;
  40. const ASN1_BIT_STRING *sig;
  41. long l;
  42. int i;
  43. BIO_printf(out, "Certificate Revocation List (CRL):\n");
  44. l = X509_CRL_get_version(x);
  45. if (l >= 0 && l <= 1)
  46. BIO_printf(out, "%8sVersion %ld (0x%lx)\n", "", l + 1, (unsigned long)l);
  47. else
  48. BIO_printf(out, "%8sVersion unknown (%ld)\n", "", l);
  49. X509_CRL_get0_signature(x, &sig, &sig_alg);
  50. X509_signature_print(out, sig_alg, NULL);
  51. BIO_printf(out, "%8sIssuer: ", "");
  52. X509_NAME_print_ex(out, X509_CRL_get_issuer(x), 0, nmflag);
  53. BIO_puts(out, "\n");
  54. BIO_printf(out, "%8sLast Update: ", "");
  55. ASN1_TIME_print(out, X509_CRL_get0_lastUpdate(x));
  56. BIO_printf(out, "\n%8sNext Update: ", "");
  57. if (X509_CRL_get0_nextUpdate(x))
  58. ASN1_TIME_print(out, X509_CRL_get0_nextUpdate(x));
  59. else
  60. BIO_printf(out, "NONE");
  61. BIO_printf(out, "\n");
  62. X509V3_extensions_print(out, "CRL extensions",
  63. X509_CRL_get0_extensions(x), 0, 8);
  64. rev = X509_CRL_get_REVOKED(x);
  65. if (sk_X509_REVOKED_num(rev) > 0)
  66. BIO_printf(out, "Revoked Certificates:\n");
  67. else
  68. BIO_printf(out, "No Revoked Certificates.\n");
  69. for (i = 0; i < sk_X509_REVOKED_num(rev); i++) {
  70. r = sk_X509_REVOKED_value(rev, i);
  71. BIO_printf(out, " Serial Number: ");
  72. i2a_ASN1_INTEGER(out, X509_REVOKED_get0_serialNumber(r));
  73. BIO_printf(out, "\n Revocation Date: ");
  74. ASN1_TIME_print(out, X509_REVOKED_get0_revocationDate(r));
  75. BIO_printf(out, "\n");
  76. X509V3_extensions_print(out, "CRL entry extensions",
  77. X509_REVOKED_get0_extensions(r), 0, 8);
  78. }
  79. X509_signature_print(out, sig_alg, sig);
  80. return 1;
  81. }