From: Dr. Stephen Henson Date: Wed, 27 Jan 2016 14:34:36 +0000 (+0000) Subject: Add ASN1_buf_print to print a buffer in ASN1_bn_print format. X-Git-Tag: OpenSSL_1_1_0-pre3~266 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=26c255fcf875d0272349c1221780dcd7e67b5d61;p=oweals%2Fopenssl.git Add ASN1_buf_print to print a buffer in ASN1_bn_print format. Reviewed-by: Viktor Dukhovni --- diff --git a/crypto/asn1/t_pkey.c b/crypto/asn1/t_pkey.c index c50d193608..afe347bab2 100644 --- a/crypto/asn1/t_pkey.c +++ b/crypto/asn1/t_pkey.c @@ -61,16 +61,45 @@ #include #include "internal/bn_int.h" +/* Number of octets per line */ +#define ASN1_BUF_PRINT_WIDTH 15 +/* Maximum indent */ +#define ASN1_PRINT_MAX_INDENT 128 + +int ASN1_buf_print(BIO *bp, unsigned char *buf, size_t buflen, int indent) +{ + size_t i; + + for (i = 0; i < buflen; i++) { + if ((i % ASN1_BUF_PRINT_WIDTH) == 0) { + if (i > 0 && BIO_puts(bp, "\n") <= 0) + return 0; + if (!BIO_indent(bp, indent, ASN1_PRINT_MAX_INDENT)) + return 0; + } + /* + * Use colon separators for each octet for compatibility as + * this fuction is used to print out key components. + */ + if (BIO_printf(bp, "%02x%s", buf[i], + (i == buflen - 1) ? "" : ":") <= 0) + return 0; + } + if (BIO_write(bp, "\n", 1) <= 0) + return 0; + return 1; +} + int ASN1_bn_print(BIO *bp, const char *number, const BIGNUM *num, - unsigned char *buf, int off) + unsigned char *buf, int indent) { - int n, i; + int n; const char *neg; if (num == NULL) - return (1); + return 1; neg = (BN_is_negative(num)) ? "-" : ""; - if (!BIO_indent(bp, off, 128)) + if (!BIO_indent(bp, indent, ASN1_PRINT_MAX_INDENT)) return 0; if (BN_is_zero(num)) { if (BIO_printf(bp, "%s 0\n", number) <= 0) @@ -85,7 +114,7 @@ int ASN1_bn_print(BIO *bp, const char *number, const BIGNUM *num, return (0); } else { buf[0] = 0; - if (BIO_printf(bp, "%s%s", number, + if (BIO_printf(bp, "%s%s\n", number, (neg[0] == '-') ? " (Negative)" : "") <= 0) return (0); n = BN_bn2bin(num, &buf[1]); @@ -95,17 +124,8 @@ int ASN1_bn_print(BIO *bp, const char *number, const BIGNUM *num, else buf++; - for (i = 0; i < n; i++) { - if ((i % 15) == 0) { - if (BIO_puts(bp, "\n") <= 0 || !BIO_indent(bp, off + 4, 128)) - return 0; - } - if (BIO_printf(bp, "%02x%s", buf[i], ((i + 1) == n) ? "" : ":") - <= 0) - return (0); - } - if (BIO_write(bp, "\n", 1) <= 0) - return (0); + if (ASN1_buf_print(bp, buf, n, indent + 4) == 0) + return 0; } - return (1); + return 1; } diff --git a/include/openssl/asn1.h b/include/openssl/asn1.h index 63253d4e6c..360914d7d2 100644 --- a/include/openssl/asn1.h +++ b/include/openssl/asn1.h @@ -785,6 +785,7 @@ int ASN1_GENERALIZEDTIME_print(BIO *fp, const ASN1_GENERALIZEDTIME *a); int ASN1_TIME_print(BIO *fp, const ASN1_TIME *a); int ASN1_STRING_print(BIO *bp, const ASN1_STRING *v); int ASN1_STRING_print_ex(BIO *out, ASN1_STRING *str, unsigned long flags); +int ASN1_buf_print(BIO *bp, unsigned char *buf, size_t buflen, int off); int ASN1_bn_print(BIO *bp, const char *number, const BIGNUM *num, unsigned char *buf, int off); int ASN1_parse(BIO *bp, const unsigned char *pp, long len, int indent);