2015-01-22 11:40:55 +08:00
|
|
|
/*
|
2021-05-06 20:03:23 +08:00
|
|
|
* Copyright 1999-2021 The OpenSSL Project Authors. All Rights Reserved.
|
1999-02-19 09:29:29 +08:00
|
|
|
*
|
2018-12-06 21:00:36 +08:00
|
|
|
* Licensed under the Apache License 2.0 (the "License"). You may not use
|
2016-05-18 02:52:22 +08:00
|
|
|
* this file except in compliance with the License. You can obtain a copy
|
|
|
|
* in the file LICENSE in the source distribution or at
|
|
|
|
* https://www.openssl.org/source/license.html
|
1999-02-19 09:29:29 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2015-05-14 22:56:48 +08:00
|
|
|
#include "internal/cryptlib.h"
|
1999-04-24 06:13:45 +08:00
|
|
|
#include <openssl/buffer.h>
|
|
|
|
#include <openssl/bn.h>
|
|
|
|
#include <openssl/objects.h>
|
|
|
|
#include <openssl/x509.h>
|
|
|
|
#include <openssl/x509v3.h>
|
1999-02-19 09:29:29 +08:00
|
|
|
|
2015-01-15 04:57:28 +08:00
|
|
|
#ifndef OPENSSL_NO_STDIO
|
1999-04-20 05:31:43 +08:00
|
|
|
int X509_CRL_print_fp(FILE *fp, X509_CRL *x)
|
2015-01-22 11:40:55 +08:00
|
|
|
{
|
|
|
|
BIO *b;
|
|
|
|
int ret;
|
1999-02-19 09:29:29 +08:00
|
|
|
|
2015-01-22 11:40:55 +08:00
|
|
|
if ((b = BIO_new(BIO_s_file())) == NULL) {
|
2020-11-04 19:23:19 +08:00
|
|
|
ERR_raise(ERR_LIB_X509, ERR_R_BUF_LIB);
|
2017-10-17 22:04:09 +08:00
|
|
|
return 0;
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
|
|
|
BIO_set_fp(b, fp, BIO_NOCLOSE);
|
|
|
|
ret = X509_CRL_print(b, x);
|
|
|
|
BIO_free(b);
|
2017-10-17 22:04:09 +08:00
|
|
|
return ret;
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
1999-02-19 09:29:29 +08:00
|
|
|
#endif
|
|
|
|
|
1999-04-20 05:31:43 +08:00
|
|
|
int X509_CRL_print(BIO *out, X509_CRL *x)
|
2017-04-26 00:25:42 +08:00
|
|
|
{
|
|
|
|
return X509_CRL_print_ex(out, x, XN_FLAG_COMPAT);
|
|
|
|
}
|
|
|
|
|
|
|
|
int X509_CRL_print_ex(BIO *out, X509_CRL *x, unsigned long nmflag)
|
1999-02-19 09:29:29 +08:00
|
|
|
{
|
2015-01-22 11:40:55 +08:00
|
|
|
STACK_OF(X509_REVOKED) *rev;
|
|
|
|
X509_REVOKED *r;
|
2016-08-13 21:44:07 +08:00
|
|
|
const X509_ALGOR *sig_alg;
|
|
|
|
const ASN1_BIT_STRING *sig;
|
2015-01-22 11:40:55 +08:00
|
|
|
long l;
|
|
|
|
int i;
|
1999-02-19 09:29:29 +08:00
|
|
|
|
2015-01-22 11:40:55 +08:00
|
|
|
BIO_printf(out, "Certificate Revocation List (CRL):\n");
|
|
|
|
l = X509_CRL_get_version(x);
|
2021-03-12 03:43:04 +08:00
|
|
|
if (l >= X509_CRL_VERSION_1 && l <= X509_CRL_VERSION_2)
|
2017-01-14 23:10:25 +08:00
|
|
|
BIO_printf(out, "%8sVersion %ld (0x%lx)\n", "", l + 1, (unsigned long)l);
|
|
|
|
else
|
|
|
|
BIO_printf(out, "%8sVersion unknown (%ld)\n", "", l);
|
2016-08-13 21:44:07 +08:00
|
|
|
X509_CRL_get0_signature(x, &sig, &sig_alg);
|
2017-11-16 08:10:44 +08:00
|
|
|
BIO_puts(out, " ");
|
2015-09-18 09:38:49 +08:00
|
|
|
X509_signature_print(out, sig_alg, NULL);
|
2017-04-26 00:25:42 +08:00
|
|
|
BIO_printf(out, "%8sIssuer: ", "");
|
|
|
|
X509_NAME_print_ex(out, X509_CRL_get_issuer(x), 0, nmflag);
|
|
|
|
BIO_puts(out, "\n");
|
2015-01-22 11:40:55 +08:00
|
|
|
BIO_printf(out, "%8sLast Update: ", "");
|
2016-08-19 19:39:57 +08:00
|
|
|
ASN1_TIME_print(out, X509_CRL_get0_lastUpdate(x));
|
2015-01-22 11:40:55 +08:00
|
|
|
BIO_printf(out, "\n%8sNext Update: ", "");
|
2016-08-19 19:39:57 +08:00
|
|
|
if (X509_CRL_get0_nextUpdate(x))
|
|
|
|
ASN1_TIME_print(out, X509_CRL_get0_nextUpdate(x));
|
2015-01-22 11:40:55 +08:00
|
|
|
else
|
|
|
|
BIO_printf(out, "NONE");
|
|
|
|
BIO_printf(out, "\n");
|
1999-02-19 09:29:29 +08:00
|
|
|
|
2015-09-18 09:38:49 +08:00
|
|
|
X509V3_extensions_print(out, "CRL extensions",
|
|
|
|
X509_CRL_get0_extensions(x), 0, 8);
|
1999-02-19 09:29:29 +08:00
|
|
|
|
2015-01-22 11:40:55 +08:00
|
|
|
rev = X509_CRL_get_REVOKED(x);
|
1999-02-19 09:29:29 +08:00
|
|
|
|
2015-01-22 11:40:55 +08:00
|
|
|
if (sk_X509_REVOKED_num(rev) > 0)
|
|
|
|
BIO_printf(out, "Revoked Certificates:\n");
|
|
|
|
else
|
|
|
|
BIO_printf(out, "No Revoked Certificates.\n");
|
1999-02-19 09:29:29 +08:00
|
|
|
|
2015-01-22 11:40:55 +08:00
|
|
|
for (i = 0; i < sk_X509_REVOKED_num(rev); i++) {
|
|
|
|
r = sk_X509_REVOKED_value(rev, i);
|
|
|
|
BIO_printf(out, " Serial Number: ");
|
2015-09-18 09:38:49 +08:00
|
|
|
i2a_ASN1_INTEGER(out, X509_REVOKED_get0_serialNumber(r));
|
2015-01-22 11:40:55 +08:00
|
|
|
BIO_printf(out, "\n Revocation Date: ");
|
2015-09-18 09:38:49 +08:00
|
|
|
ASN1_TIME_print(out, X509_REVOKED_get0_revocationDate(r));
|
2015-01-22 11:40:55 +08:00
|
|
|
BIO_printf(out, "\n");
|
|
|
|
X509V3_extensions_print(out, "CRL entry extensions",
|
2015-09-18 09:38:49 +08:00
|
|
|
X509_REVOKED_get0_extensions(r), 0, 8);
|
2015-01-22 11:40:55 +08:00
|
|
|
}
|
2015-09-18 09:38:49 +08:00
|
|
|
X509_signature_print(out, sig_alg, sig);
|
1999-02-19 09:29:29 +08:00
|
|
|
|
2015-01-22 11:40:55 +08:00
|
|
|
return 1;
|
1999-02-19 09:29:29 +08:00
|
|
|
|
|
|
|
}
|