From 7880e14318bda992e5f89077bce7f965f4840262 Mon Sep 17 00:00:00 2001 From: "Dr. Stephen Henson" Date: Fri, 18 Sep 2015 02:54:59 +0100 Subject: Use accessors in X509_REQ_print(). Reviewed-by: Rich Salz --- crypto/asn1/t_req.c | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) (limited to 'crypto/asn1') diff --git a/crypto/asn1/t_req.c b/crypto/asn1/t_req.c index 1ed404ce62..80611b15d7 100644 --- a/crypto/asn1/t_req.c +++ b/crypto/asn1/t_req.c @@ -62,7 +62,6 @@ #include #include #include -#include "internal/x509_int.h" #include #ifndef OPENSSL_NO_RSA # include @@ -93,9 +92,7 @@ int X509_REQ_print_ex(BIO *bp, X509_REQ *x, unsigned long nmflags, { long l; int i; - X509_REQ_INFO *ri; EVP_PKEY *pkey; - STACK_OF(X509_ATTRIBUTE) *sk; STACK_OF(X509_EXTENSION) *exts; char mlch = ' '; int nmindent = 0; @@ -108,7 +105,6 @@ int X509_REQ_print_ex(BIO *bp, X509_REQ *x, unsigned long nmflags, if (nmflags == X509_FLAG_COMPAT) nmindent = 16; - ri = &x->req_info; if (!(cflag & X509_FLAG_NO_HEADER)) { if (BIO_write(bp, "Certificate Request:\n", 21) <= 0) goto err; @@ -123,7 +119,8 @@ int X509_REQ_print_ex(BIO *bp, X509_REQ *x, unsigned long nmflags, if (!(cflag & X509_FLAG_NO_SUBJECT)) { if (BIO_printf(bp, " Subject:%c", mlch) <= 0) goto err; - if (X509_NAME_print_ex(bp, ri->subject, nmindent, nmflags) < 0) + if (X509_NAME_print_ex(bp, X509_REQ_get_subject_name(x), + nmindent, nmflags) < 0) goto err; if (BIO_write(bp, "\n", 1) <= 0) goto err; @@ -157,19 +154,18 @@ int X509_REQ_print_ex(BIO *bp, X509_REQ *x, unsigned long nmflags, if (BIO_printf(bp, "%8sAttributes:\n", "") <= 0) goto err; - sk = x->req_info.attributes; - if (sk_X509_ATTRIBUTE_num(sk) == 0) { + if (X509_REQ_get_attr_count(x) == 0) { if (BIO_printf(bp, "%12sa0:00\n", "") <= 0) goto err; } else { - for (i = 0; i < sk_X509_ATTRIBUTE_num(sk); i++) { + for (i = 0; i < X509_REQ_get_attr_count(x); i++) { ASN1_TYPE *at; X509_ATTRIBUTE *a; ASN1_BIT_STRING *bs = NULL; ASN1_OBJECT *aobj; int j, type = 0, count = 1, ii = 0; - a = sk_X509_ATTRIBUTE_value(sk, i); + a = X509_REQ_get_attr(x, i); aobj = X509_ATTRIBUTE_get0_object(a); if (X509_REQ_extension_nid(OBJ_obj2nid(aobj))) continue; @@ -231,7 +227,10 @@ int X509_REQ_print_ex(BIO *bp, X509_REQ *x, unsigned long nmflags, } if (!(cflag & X509_FLAG_NO_SIGDUMP)) { - if (!X509_signature_print(bp, &x->sig_alg, x->signature)) + X509_ALGOR *sig_alg; + ASN1_BIT_STRING *sig; + X509_REQ_get0_signature(&sig, &sig_alg, x); + if (!X509_signature_print(bp, sig_alg, sig)) goto err; } -- cgit v1.2.3