2015-01-22 03:40:55 +00:00
|
|
|
/*
|
2016-05-17 18:52:22 +00:00
|
|
|
* Copyright 1999-2016 The OpenSSL Project Authors. All Rights Reserved.
|
1999-02-19 01:29:29 +00:00
|
|
|
*
|
2016-05-17 18:52:22 +00:00
|
|
|
* Licensed under the OpenSSL license (the "License"). You may not use
|
|
|
|
* 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 01:29:29 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2015-05-14 14:56:48 +00:00
|
|
|
#include "internal/cryptlib.h"
|
1999-04-23 22:13:45 +00:00
|
|
|
#include <openssl/buffer.h>
|
|
|
|
#include <openssl/bn.h>
|
|
|
|
#include <openssl/objects.h>
|
|
|
|
#include <openssl/x509.h>
|
|
|
|
#include <openssl/x509v3.h>
|
1999-02-19 01:29:29 +00:00
|
|
|
|
2015-01-14 20:57:28 +00:00
|
|
|
#ifndef OPENSSL_NO_STDIO
|
1999-04-19 21:31:43 +00:00
|
|
|
int X509_CRL_print_fp(FILE *fp, X509_CRL *x)
|
2015-01-22 03:40:55 +00:00
|
|
|
{
|
|
|
|
BIO *b;
|
|
|
|
int ret;
|
1999-02-19 01:29:29 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
if ((b = BIO_new(BIO_s_file())) == NULL) {
|
|
|
|
X509err(X509_F_X509_CRL_PRINT_FP, ERR_R_BUF_LIB);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
BIO_set_fp(b, fp, BIO_NOCLOSE);
|
|
|
|
ret = X509_CRL_print(b, x);
|
|
|
|
BIO_free(b);
|
|
|
|
return (ret);
|
|
|
|
}
|
1999-02-19 01:29:29 +00:00
|
|
|
#endif
|
|
|
|
|
1999-04-19 21:31:43 +00:00
|
|
|
int X509_CRL_print(BIO *out, X509_CRL *x)
|
1999-02-19 01:29:29 +00:00
|
|
|
{
|
2015-01-22 03:40:55 +00:00
|
|
|
STACK_OF(X509_REVOKED) *rev;
|
|
|
|
X509_REVOKED *r;
|
2016-08-13 13:44:07 +00:00
|
|
|
const X509_ALGOR *sig_alg;
|
|
|
|
const ASN1_BIT_STRING *sig;
|
2015-01-22 03:40:55 +00:00
|
|
|
long l;
|
|
|
|
int i;
|
|
|
|
char *p;
|
1999-02-19 01:29:29 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
BIO_printf(out, "Certificate Revocation List (CRL):\n");
|
|
|
|
l = X509_CRL_get_version(x);
|
|
|
|
BIO_printf(out, "%8sVersion %lu (0x%lx)\n", "", l + 1, l);
|
2016-08-13 13:44:07 +00:00
|
|
|
X509_CRL_get0_signature(x, &sig, &sig_alg);
|
2015-09-18 01:38:49 +00:00
|
|
|
X509_signature_print(out, sig_alg, NULL);
|
2015-01-22 03:40:55 +00:00
|
|
|
p = X509_NAME_oneline(X509_CRL_get_issuer(x), NULL, 0);
|
|
|
|
BIO_printf(out, "%8sIssuer: %s\n", "", p);
|
|
|
|
OPENSSL_free(p);
|
|
|
|
BIO_printf(out, "%8sLast Update: ", "");
|
|
|
|
ASN1_TIME_print(out, X509_CRL_get_lastUpdate(x));
|
|
|
|
BIO_printf(out, "\n%8sNext Update: ", "");
|
|
|
|
if (X509_CRL_get_nextUpdate(x))
|
|
|
|
ASN1_TIME_print(out, X509_CRL_get_nextUpdate(x));
|
|
|
|
else
|
|
|
|
BIO_printf(out, "NONE");
|
|
|
|
BIO_printf(out, "\n");
|
1999-02-19 01:29:29 +00:00
|
|
|
|
2015-09-18 01:38:49 +00:00
|
|
|
X509V3_extensions_print(out, "CRL extensions",
|
|
|
|
X509_CRL_get0_extensions(x), 0, 8);
|
1999-02-19 01:29:29 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
rev = X509_CRL_get_REVOKED(x);
|
1999-02-19 01:29:29 +00:00
|
|
|
|
2015-01-22 03:40:55 +00: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 01:29:29 +00:00
|
|
|
|
2015-01-22 03:40:55 +00: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 01:38:49 +00:00
|
|
|
i2a_ASN1_INTEGER(out, X509_REVOKED_get0_serialNumber(r));
|
2015-01-22 03:40:55 +00:00
|
|
|
BIO_printf(out, "\n Revocation Date: ");
|
2015-09-18 01:38:49 +00:00
|
|
|
ASN1_TIME_print(out, X509_REVOKED_get0_revocationDate(r));
|
2015-01-22 03:40:55 +00:00
|
|
|
BIO_printf(out, "\n");
|
|
|
|
X509V3_extensions_print(out, "CRL entry extensions",
|
2015-09-18 01:38:49 +00:00
|
|
|
X509_REVOKED_get0_extensions(r), 0, 8);
|
2015-01-22 03:40:55 +00:00
|
|
|
}
|
2015-09-18 01:38:49 +00:00
|
|
|
X509_signature_print(out, sig_alg, sig);
|
1999-02-19 01:29:29 +00:00
|
|
|
|
2015-01-22 03:40:55 +00:00
|
|
|
return 1;
|
1999-02-19 01:29:29 +00:00
|
|
|
|
|
|
|
}
|