OpenCoverage

t_x509.c

Absolute File Name:/home/opencoverage/opencoverage/guest-scripts/openssl/src/crypto/x509/t_x509.c
Source codeSwitch to Preprocessed file
LineSourceCount
1/*-
2 * Copyright 1995-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-
10#include <stdio.h>-
11#include "internal/cryptlib.h"-
12#include <openssl/buffer.h>-
13#include <openssl/bn.h>-
14#include <openssl/objects.h>-
15#include <openssl/x509.h>-
16#include <openssl/x509v3.h>-
17#include "internal/asn1_int.h"-
18-
19#ifndef OPENSSL_NO_STDIO-
20int X509_print_fp(FILE *fp, X509 *x)-
21{-
22 return X509_print_ex_fp(fp, x, XN_FLAG_COMPAT, X509_FLAG_COMPAT);
never executed: return X509_print_ex_fp(fp, x, 0, 0);
0
23}-
24-
25int X509_print_ex_fp(FILE *fp, X509 *x, unsigned long nmflag,-
26 unsigned long cflag)-
27{-
28 BIO *b;-
29 int ret;-
30-
31 if ((b = BIO_new(BIO_s_file())) == NULL) {
(b = BIO_new(B...== ((void *)0)Description
TRUEnever evaluated
FALSEnever evaluated
0
32 X509err(X509_F_X509_PRINT_EX_FP, ERR_R_BUF_LIB);-
33 return 0;
never executed: return 0;
0
34 }-
35 BIO_set_fp(b, fp, BIO_NOCLOSE);-
36 ret = X509_print_ex(b, x, nmflag, cflag);-
37 BIO_free(b);-
38 return ret;
never executed: return ret;
0
39}-
40#endif-
41-
42int X509_print(BIO *bp, X509 *x)-
43{-
44 return X509_print_ex(bp, x, XN_FLAG_COMPAT, X509_FLAG_COMPAT);
executed 1470 times by 1 test: return X509_print_ex(bp, x, 0, 0);
Executed by:
  • libcrypto.so.1.1
1470
45}-
46-
47int X509_print_ex(BIO *bp, X509 *x, unsigned long nmflags,-
48 unsigned long cflag)-
49{-
50 long l;-
51 int ret = 0, i;-
52 char *m = NULL, mlch = ' ';-
53 int nmindent = 0;-
54 ASN1_INTEGER *bs;-
55 EVP_PKEY *pkey = NULL;-
56 const char *neg;-
57-
58 if ((nmflags & XN_FLAG_SEP_MASK) == XN_FLAG_SEP_MULTILINE) {
(nmflags & (0x...) == (4 << 16)Description
TRUEevaluated 2 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
FALSEevaluated 1489 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
2-1489
59 mlch = '\n';-
60 nmindent = 12;-
61 }
executed 2 times by 1 test: end of block
Executed by:
  • libcrypto.so.1.1
2
62-
63 if (nmflags == X509_FLAG_COMPAT)
nmflags == 0Description
TRUEevaluated 1470 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
FALSEevaluated 21 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
21-1470
64 nmindent = 16;
executed 1470 times by 1 test: nmindent = 16;
Executed by:
  • libcrypto.so.1.1
1470
65-
66 if (!(cflag & X509_FLAG_NO_HEADER)) {
!(cflag & 1L)Description
TRUEevaluated 1489 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
FALSEevaluated 2 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
2-1489
67 if (BIO_write(bp, "Certificate:\n", 13) <= 0)
BIO_write(bp, ...:\n", 13) <= 0Description
TRUEnever evaluated
FALSEevaluated 1489 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
0-1489
68 goto err;
never executed: goto err;
0
69 if (BIO_write(bp, " Data:\n", 10) <= 0)
BIO_write(bp, ...:\n", 10) <= 0Description
TRUEnever evaluated
FALSEevaluated 1489 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
0-1489
70 goto err;
never executed: goto err;
0
71 }
executed 1489 times by 1 test: end of block
Executed by:
  • libcrypto.so.1.1
1489
72 if (!(cflag & X509_FLAG_NO_VERSION)) {
!(cflag & (1L << 1))Description
TRUEevaluated 1489 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
FALSEevaluated 2 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
2-1489
73 l = X509_get_version(x);-
74 if (l >= 0 && l <= 2) {
l >= 0Description
TRUEevaluated 1476 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
FALSEevaluated 13 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
l <= 2Description
TRUEevaluated 1465 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
FALSEevaluated 11 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
11-1476
75 if (BIO_printf(bp, "%8sVersion: %ld (0x%lx)\n", "", l + 1, (unsigned long)l) <= 0)
BIO_printf(bp,...d long)l) <= 0Description
TRUEnever evaluated
FALSEevaluated 1465 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
0-1465
76 goto err;
never executed: goto err;
0
77 } else {
executed 1465 times by 1 test: end of block
Executed by:
  • libcrypto.so.1.1
1465
78 if (BIO_printf(bp, "%8sVersion: Unknown (%ld)\n", "", l) <= 0)
BIO_printf(bp,...", "", l) <= 0Description
TRUEnever evaluated
FALSEevaluated 24 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
0-24
79 goto err;
never executed: goto err;
0
80 }
executed 24 times by 1 test: end of block
Executed by:
  • libcrypto.so.1.1
24
81 }-
82 if (!(cflag & X509_FLAG_NO_SERIAL)) {
!(cflag & (1L << 2))Description
TRUEevaluated 1491 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
FALSEnever evaluated
0-1491
83-
84 if (BIO_write(bp, " Serial Number:", 22) <= 0)
BIO_write(bp, ...er:", 22) <= 0Description
TRUEnever evaluated
FALSEevaluated 1491 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
0-1491
85 goto err;
never executed: goto err;
0
86-
87 bs = X509_get_serialNumber(x);-
88 if (bs->length <= (int)sizeof(long)) {
bs->length <= ...t)sizeof(long)Description
TRUEevaluated 1303 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
FALSEevaluated 188 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
188-1303
89 ERR_set_mark();-
90 l = ASN1_INTEGER_get(bs);-
91 ERR_pop_to_mark();-
92 } else {
executed 1303 times by 1 test: end of block
Executed by:
  • libcrypto.so.1.1
1303
93 l = -1;-
94 }
executed 188 times by 1 test: end of block
Executed by:
  • libcrypto.so.1.1
188
95 if (l != -1) {
l != -1Description
TRUEevaluated 1165 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
FALSEevaluated 326 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
326-1165
96 unsigned long ul;-
97 if (bs->type == V_ASN1_NEG_INTEGER) {
bs->type == (2 | 0x100)Description
TRUEevaluated 267 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
FALSEevaluated 898 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
267-898
98 ul = 0 - (unsigned long)l;-
99 neg = "-";-
100 } else {
executed 267 times by 1 test: end of block
Executed by:
  • libcrypto.so.1.1
267
101 ul = l;-
102 neg = "";-
103 }
executed 898 times by 1 test: end of block
Executed by:
  • libcrypto.so.1.1
898
104 if (BIO_printf(bp, " %s%lu (%s0x%lx)\n", neg, ul, neg, ul) <= 0)
BIO_printf(bp,... neg, ul) <= 0Description
TRUEnever evaluated
FALSEevaluated 1165 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
0-1165
105 goto err;
never executed: goto err;
0
106 } else {
executed 1165 times by 1 test: end of block
Executed by:
  • libcrypto.so.1.1
1165
107 neg = (bs->type == V_ASN1_NEG_INTEGER) ? " (Negative)" : "";
(bs->type == (2 | 0x100))Description
TRUEevaluated 54 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
FALSEevaluated 272 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
54-272
108 if (BIO_printf(bp, "\n%12s%s", "", neg) <= 0)
BIO_printf(bp,... "", neg) <= 0Description
TRUEnever evaluated
FALSEevaluated 326 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
0-326
109 goto err;
never executed: goto err;
0
110-
111 for (i = 0; i < bs->length; i++) {
i < bs->lengthDescription
TRUEevaluated 5278 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
FALSEevaluated 326 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
326-5278
112 if (BIO_printf(bp, "%02x%c", bs->data[i],
BIO_printf(bp,...' : ':')) <= 0Description
TRUEnever evaluated
FALSEevaluated 5278 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
0-5278
113 ((i + 1 == bs->length) ? '\n' : ':')) <= 0)
BIO_printf(bp,...' : ':')) <= 0Description
TRUEnever evaluated
FALSEevaluated 5278 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
0-5278
114 goto err;
never executed: goto err;
0
115 }
executed 5278 times by 1 test: end of block
Executed by:
  • libcrypto.so.1.1
5278
116 }
executed 326 times by 1 test: end of block
Executed by:
  • libcrypto.so.1.1
326
117-
118 }-
119-
120 if (!(cflag & X509_FLAG_NO_SIGNAME)) {
!(cflag & (1L << 3))Description
TRUEevaluated 1489 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
FALSEevaluated 2 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
2-1489
121 const X509_ALGOR *tsig_alg = X509_get0_tbs_sigalg(x);-
122-
123 if (BIO_puts(bp, " ") <= 0)
BIO_puts(bp, " ") <= 0Description
TRUEnever evaluated
FALSEevaluated 1489 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
0-1489
124 goto err;
never executed: goto err;
0
125 if (X509_signature_print(bp, tsig_alg, NULL) <= 0)
X509_signature...id *)0) ) <= 0Description
TRUEnever evaluated
FALSEevaluated 1489 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
0-1489
126 goto err;
never executed: goto err;
0
127 }
executed 1489 times by 1 test: end of block
Executed by:
  • libcrypto.so.1.1
1489
128-
129 if (!(cflag & X509_FLAG_NO_ISSUER)) {
!(cflag & (1L << 4))Description
TRUEevaluated 1489 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
FALSEevaluated 2 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
2-1489
130 if (BIO_printf(bp, " Issuer:%c", mlch) <= 0)
BIO_printf(bp,...c", mlch) <= 0Description
TRUEnever evaluated
FALSEevaluated 1489 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
0-1489
131 goto err;
never executed: goto err;
0
132 if (X509_NAME_print_ex(bp, X509_get_issuer_name(x), nmindent, nmflags)
X509_NAME_prin..., nmflags) < 0Description
TRUEnever evaluated
FALSEevaluated 1489 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
0-1489
133 < 0)
X509_NAME_prin..., nmflags) < 0Description
TRUEnever evaluated
FALSEevaluated 1489 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
0-1489
134 goto err;
never executed: goto err;
0
135 if (BIO_write(bp, "\n", 1) <= 0)
BIO_write(bp, "\n", 1) <= 0Description
TRUEnever evaluated
FALSEevaluated 1489 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
0-1489
136 goto err;
never executed: goto err;
0
137 }
executed 1489 times by 1 test: end of block
Executed by:
  • libcrypto.so.1.1
1489
138 if (!(cflag & X509_FLAG_NO_VALIDITY)) {
!(cflag & (1L << 5))Description
TRUEevaluated 1491 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
FALSEnever evaluated
0-1491
139 if (BIO_write(bp, " Validity\n", 17) <= 0)
BIO_write(bp, ...y\n", 17) <= 0Description
TRUEnever evaluated
FALSEevaluated 1491 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
0-1491
140 goto err;
never executed: goto err;
0
141 if (BIO_write(bp, " Not Before: ", 24) <= 0)
BIO_write(bp, ...e: ", 24) <= 0Description
TRUEnever evaluated
FALSEevaluated 1491 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
0-1491
142 goto err;
never executed: goto err;
0
143 if (!ASN1_TIME_print(bp, X509_get0_notBefore(x)))
!ASN1_TIME_pri..._notBefore(x))Description
TRUEevaluated 140 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
FALSEevaluated 1351 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
140-1351
144 goto err;
executed 140 times by 1 test: goto err;
Executed by:
  • libcrypto.so.1.1
140
145 if (BIO_write(bp, "\n Not After : ", 25) <= 0)
BIO_write(bp, ... : ", 25) <= 0Description
TRUEnever evaluated
FALSEevaluated 1351 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
0-1351
146 goto err;
never executed: goto err;
0
147 if (!ASN1_TIME_print(bp, X509_get0_notAfter(x)))
!ASN1_TIME_pri...0_notAfter(x))Description
TRUEevaluated 5 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
FALSEevaluated 1346 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
5-1346
148 goto err;
executed 5 times by 1 test: goto err;
Executed by:
  • libcrypto.so.1.1
5
149 if (BIO_write(bp, "\n", 1) <= 0)
BIO_write(bp, "\n", 1) <= 0Description
TRUEnever evaluated
FALSEevaluated 1346 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
0-1346
150 goto err;
never executed: goto err;
0
151 }
executed 1346 times by 1 test: end of block
Executed by:
  • libcrypto.so.1.1
1346
152 if (!(cflag & X509_FLAG_NO_SUBJECT)) {
!(cflag & (1L << 6))Description
TRUEevaluated 1346 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
FALSEnever evaluated
0-1346
153 if (BIO_printf(bp, " Subject:%c", mlch) <= 0)
BIO_printf(bp,...c", mlch) <= 0Description
TRUEnever evaluated
FALSEevaluated 1346 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
0-1346
154 goto err;
never executed: goto err;
0
155 if (X509_NAME_print_ex
X509_NAME_prin..., nmflags) < 0Description
TRUEnever evaluated
FALSEevaluated 1346 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
0-1346
156 (bp, X509_get_subject_name(x), nmindent, nmflags) < 0)
X509_NAME_prin..., nmflags) < 0Description
TRUEnever evaluated
FALSEevaluated 1346 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
0-1346
157 goto err;
never executed: goto err;
0
158 if (BIO_write(bp, "\n", 1) <= 0)
BIO_write(bp, "\n", 1) <= 0Description
TRUEnever evaluated
FALSEevaluated 1346 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
0-1346
159 goto err;
never executed: goto err;
0
160 }
executed 1346 times by 1 test: end of block
Executed by:
  • libcrypto.so.1.1
1346
161 if (!(cflag & X509_FLAG_NO_PUBKEY)) {
!(cflag & (1L << 7))Description
TRUEevaluated 1344 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
FALSEevaluated 2 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
2-1344
162 X509_PUBKEY *xpkey = X509_get_X509_PUBKEY(x);-
163 ASN1_OBJECT *xpoid;-
164 X509_PUBKEY_get0_param(&xpoid, NULL, NULL, NULL, xpkey);-
165 if (BIO_write(bp, " Subject Public Key Info:\n", 33) <= 0)
BIO_write(bp, ...:\n", 33) <= 0Description
TRUEnever evaluated
FALSEevaluated 1344 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
0-1344
166 goto err;
never executed: goto err;
0
167 if (BIO_printf(bp, "%12sPublic Key Algorithm: ", "") <= 0)
BIO_printf(bp,...m: ", "") <= 0Description
TRUEnever evaluated
FALSEevaluated 1344 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
0-1344
168 goto err;
never executed: goto err;
0
169 if (i2a_ASN1_OBJECT(bp, xpoid) <= 0)
i2a_ASN1_OBJEC...p, xpoid) <= 0Description
TRUEnever evaluated
FALSEevaluated 1344 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
0-1344
170 goto err;
never executed: goto err;
0
171 if (BIO_puts(bp, "\n") <= 0)
BIO_puts(bp, "\n") <= 0Description
TRUEnever evaluated
FALSEevaluated 1344 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
0-1344
172 goto err;
never executed: goto err;
0
173-
174 pkey = X509_get0_pubkey(x);-
175 if (pkey == NULL) {
pkey == ((void *)0)Description
TRUEevaluated 1103 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
FALSEevaluated 241 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
241-1103
176 BIO_printf(bp, "%12sUnable to load Public Key\n", "");-
177 ERR_print_errors(bp);-
178 } else {
executed 1103 times by 1 test: end of block
Executed by:
  • libcrypto.so.1.1
1103
179 EVP_PKEY_print_public(bp, pkey, 16, NULL);-
180 }
executed 241 times by 1 test: end of block
Executed by:
  • libcrypto.so.1.1
241
181 }-
182-
183 if (!(cflag & X509_FLAG_NO_IDS)) {
!(cflag & (1L << 12))Description
TRUEevaluated 1346 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
FALSEnever evaluated
0-1346
184 const ASN1_BIT_STRING *iuid, *suid;-
185 X509_get0_uids(x, &iuid, &suid);-
186 if (iuid != NULL) {
iuid != ((void *)0)Description
TRUEevaluated 18 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
FALSEevaluated 1328 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
18-1328
187 if (BIO_printf(bp, "%8sIssuer Unique ID: ", "") <= 0)
BIO_printf(bp,...D: ", "") <= 0Description
TRUEnever evaluated
FALSEevaluated 18 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
0-18
188 goto err;
never executed: goto err;
0
189 if (!X509_signature_dump(bp, iuid, 12))
!X509_signatur...(bp, iuid, 12)Description
TRUEnever evaluated
FALSEevaluated 18 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
0-18
190 goto err;
never executed: goto err;
0
191 }
executed 18 times by 1 test: end of block
Executed by:
  • libcrypto.so.1.1
18
192 if (suid != NULL) {
suid != ((void *)0)Description
TRUEevaluated 16 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
FALSEevaluated 1330 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
16-1330
193 if (BIO_printf(bp, "%8sSubject Unique ID: ", "") <= 0)
BIO_printf(bp,...D: ", "") <= 0Description
TRUEnever evaluated
FALSEevaluated 16 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
0-16
194 goto err;
never executed: goto err;
0
195 if (!X509_signature_dump(bp, suid, 12))
!X509_signatur...(bp, suid, 12)Description
TRUEnever evaluated
FALSEevaluated 16 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
0-16
196 goto err;
never executed: goto err;
0
197 }
executed 16 times by 1 test: end of block
Executed by:
  • libcrypto.so.1.1
16
198 }
executed 1346 times by 1 test: end of block
Executed by:
  • libcrypto.so.1.1
1346
199-
200 if (!(cflag & X509_FLAG_NO_EXTENSIONS))
!(cflag & (1L << 8))Description
TRUEevaluated 1346 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
FALSEnever evaluated
0-1346
201 X509V3_extensions_print(bp, "X509v3 extensions",
executed 1346 times by 1 test: X509V3_extensions_print(bp, "X509v3 extensions", X509_get0_extensions(x), cflag, 8);
Executed by:
  • libcrypto.so.1.1
1346
202 X509_get0_extensions(x), cflag, 8);
executed 1346 times by 1 test: X509V3_extensions_print(bp, "X509v3 extensions", X509_get0_extensions(x), cflag, 8);
Executed by:
  • libcrypto.so.1.1
1346
203-
204 if (!(cflag & X509_FLAG_NO_SIGDUMP)) {
!(cflag & (1L << 9))Description
TRUEevaluated 1344 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
FALSEevaluated 2 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
2-1344
205 const X509_ALGOR *sig_alg;-
206 const ASN1_BIT_STRING *sig;-
207 X509_get0_signature(&sig, &sig_alg, x);-
208 if (X509_signature_print(bp, sig_alg, sig) <= 0)
X509_signature...alg, sig) <= 0Description
TRUEnever evaluated
FALSEevaluated 1344 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
0-1344
209 goto err;
never executed: goto err;
0
210 }
executed 1344 times by 1 test: end of block
Executed by:
  • libcrypto.so.1.1
1344
211 if (!(cflag & X509_FLAG_NO_AUX)) {
!(cflag & (1L << 10))Description
TRUEevaluated 1346 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
FALSEnever evaluated
0-1346
212 if (!X509_aux_print(bp, x, 0))
!X509_aux_print(bp, x, 0)Description
TRUEnever evaluated
FALSEevaluated 1346 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
0-1346
213 goto err;
never executed: goto err;
0
214 }
executed 1346 times by 1 test: end of block
Executed by:
  • libcrypto.so.1.1
1346
215 ret = 1;-
216 err:
code before this statement executed 1346 times by 1 test: err:
Executed by:
  • libcrypto.so.1.1
1346
217 OPENSSL_free(m);-
218 return ret;
executed 1491 times by 1 test: return ret;
Executed by:
  • libcrypto.so.1.1
1491
219}-
220-
221int X509_ocspid_print(BIO *bp, X509 *x)-
222{-
223 unsigned char *der = NULL;-
224 unsigned char *dertmp;-
225 int derlen;-
226 int i;-
227 unsigned char SHA1md[SHA_DIGEST_LENGTH];-
228 ASN1_BIT_STRING *keybstr;-
229 X509_NAME *subj;-
230-
231 /*-
232 * display the hash of the subject as it would appear in OCSP requests-
233 */-
234 if (BIO_printf(bp, " Subject OCSP hash: ") <= 0)
BIO_printf(bp,... hash: ") <= 0Description
TRUEnever evaluated
FALSEnever evaluated
0
235 goto err;
never executed: goto err;
0
236 subj = X509_get_subject_name(x);-
237 derlen = i2d_X509_NAME(subj, NULL);-
238 if ((der = dertmp = OPENSSL_malloc(derlen)) == NULL)
(der = dertmp ...== ((void *)0)Description
TRUEnever evaluated
FALSEnever evaluated
0
239 goto err;
never executed: goto err;
0
240 i2d_X509_NAME(subj, &dertmp);-
241-
242 if (!EVP_Digest(der, derlen, SHA1md, NULL, EVP_sha1(), NULL))
!EVP_Digest(de... ((void *)0) )Description
TRUEnever evaluated
FALSEnever evaluated
0
243 goto err;
never executed: goto err;
0
244 for (i = 0; i < SHA_DIGEST_LENGTH; i++) {
i < 20Description
TRUEnever evaluated
FALSEnever evaluated
0
245 if (BIO_printf(bp, "%02X", SHA1md[i]) <= 0)
BIO_printf(bp,...HA1md[i]) <= 0Description
TRUEnever evaluated
FALSEnever evaluated
0
246 goto err;
never executed: goto err;
0
247 }
never executed: end of block
0
248 OPENSSL_free(der);-
249 der = NULL;-
250-
251 /*-
252 * display the hash of the public key as it would appear in OCSP requests-
253 */-
254 if (BIO_printf(bp, "\n Public key OCSP hash: ") <= 0)
BIO_printf(bp,... hash: ") <= 0Description
TRUEnever evaluated
FALSEnever evaluated
0
255 goto err;
never executed: goto err;
0
256-
257 keybstr = X509_get0_pubkey_bitstr(x);-
258-
259 if (keybstr == NULL)
keybstr == ((void *)0)Description
TRUEnever evaluated
FALSEnever evaluated
0
260 goto err;
never executed: goto err;
0
261-
262 if (!EVP_Digest(ASN1_STRING_get0_data(keybstr),
!EVP_Digest(AS... ((void *)0) )Description
TRUEnever evaluated
FALSEnever evaluated
0
263 ASN1_STRING_length(keybstr), SHA1md, NULL, EVP_sha1(),
!EVP_Digest(AS... ((void *)0) )Description
TRUEnever evaluated
FALSEnever evaluated
0
264 NULL))
!EVP_Digest(AS... ((void *)0) )Description
TRUEnever evaluated
FALSEnever evaluated
0
265 goto err;
never executed: goto err;
0
266 for (i = 0; i < SHA_DIGEST_LENGTH; i++) {
i < 20Description
TRUEnever evaluated
FALSEnever evaluated
0
267 if (BIO_printf(bp, "%02X", SHA1md[i]) <= 0)
BIO_printf(bp,...HA1md[i]) <= 0Description
TRUEnever evaluated
FALSEnever evaluated
0
268 goto err;
never executed: goto err;
0
269 }
never executed: end of block
0
270 BIO_printf(bp, "\n");-
271-
272 return 1;
never executed: return 1;
0
273 err:-
274 OPENSSL_free(der);-
275 return 0;
never executed: return 0;
0
276}-
277-
278int X509_signature_dump(BIO *bp, const ASN1_STRING *sig, int indent)-
279{-
280 const unsigned char *s;-
281 int i, n;-
282-
283 n = sig->length;-
284 s = sig->data;-
285 for (i = 0; i < n; i++) {
i < nDescription
TRUEevaluated 122440 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
FALSEevaluated 3201 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
3201-122440
286 if ((i % 18) == 0) {
(i % 18) == 0Description
TRUEevaluated 7556 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
FALSEevaluated 114884 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
7556-114884
287 if (BIO_write(bp, "\n", 1) <= 0)
BIO_write(bp, "\n", 1) <= 0Description
TRUEnever evaluated
FALSEevaluated 7556 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
0-7556
288 return 0;
never executed: return 0;
0
289 if (BIO_indent(bp, indent, indent) <= 0)
BIO_indent(bp,..., indent) <= 0Description
TRUEnever evaluated
FALSEevaluated 7556 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
0-7556
290 return 0;
never executed: return 0;
0
291 }
executed 7556 times by 1 test: end of block
Executed by:
  • libcrypto.so.1.1
7556
292 if (BIO_printf(bp, "%02x%s", s[i], ((i + 1) == n) ? "" : ":") <= 0)
BIO_printf(bp,..."" : ":") <= 0Description
TRUEnever evaluated
FALSEevaluated 122440 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
0-122440
293 return 0;
never executed: return 0;
0
294 }
executed 122440 times by 1 test: end of block
Executed by:
  • libcrypto.so.1.1
122440
295 if (BIO_write(bp, "\n", 1) != 1)
BIO_write(bp, "\n", 1) != 1Description
TRUEnever evaluated
FALSEevaluated 3201 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
0-3201
296 return 0;
never executed: return 0;
0
297-
298 return 1;
executed 3201 times by 1 test: return 1;
Executed by:
  • libcrypto.so.1.1
3201
299}-
300-
301int X509_signature_print(BIO *bp, const X509_ALGOR *sigalg,-
302 const ASN1_STRING *sig)-
303{-
304 int sig_nid;-
305 if (BIO_puts(bp, " Signature Algorithm: ") <= 0)
BIO_puts(bp, "...rithm: ") <= 0Description
TRUEnever evaluated
FALSEevaluated 6516 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
0-6516
306 return 0;
never executed: return 0;
0
307 if (i2a_ASN1_OBJECT(bp, sigalg->algorithm) <= 0)
i2a_ASN1_OBJEC...lgorithm) <= 0Description
TRUEnever evaluated
FALSEevaluated 6516 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
0-6516
308 return 0;
never executed: return 0;
0
309-
310 sig_nid = OBJ_obj2nid(sigalg->algorithm);-
311 if (sig_nid != NID_undef) {
sig_nid != 0Description
TRUEevaluated 1674 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
FALSEevaluated 4842 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
1674-4842
312 int pkey_nid, dig_nid;-
313 const EVP_PKEY_ASN1_METHOD *ameth;-
314 if (OBJ_find_sigid_algs(sig_nid, &dig_nid, &pkey_nid)) {
OBJ_find_sigid...id, &pkey_nid)Description
TRUEevaluated 1050 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
FALSEevaluated 624 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
624-1050
315 ameth = EVP_PKEY_asn1_find(NULL, pkey_nid);-
316 if (ameth && ameth->sig_print)
amethDescription
TRUEevaluated 1040 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
FALSEevaluated 10 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
ameth->sig_printDescription
TRUEevaluated 968 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
FALSEevaluated 72 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
10-1040
317 return ameth->sig_print(bp, sigalg, sig, 9, 0);
executed 968 times by 1 test: return ameth->sig_print(bp, sigalg, sig, 9, 0);
Executed by:
  • libcrypto.so.1.1
968
318 }
executed 82 times by 1 test: end of block
Executed by:
  • libcrypto.so.1.1
82
319 }
executed 706 times by 1 test: end of block
Executed by:
  • libcrypto.so.1.1
706
320 if (sig)
sigDescription
TRUEevaluated 2688 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
FALSEevaluated 2860 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
2688-2860
321 return X509_signature_dump(bp, sig, 9);
executed 2688 times by 1 test: return X509_signature_dump(bp, sig, 9);
Executed by:
  • libcrypto.so.1.1
2688
322 else if (BIO_puts(bp, "\n") <= 0)
BIO_puts(bp, "\n") <= 0Description
TRUEnever evaluated
FALSEevaluated 2860 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
0-2860
323 return 0;
never executed: return 0;
0
324 return 1;
executed 2860 times by 1 test: return 1;
Executed by:
  • libcrypto.so.1.1
2860
325}-
326-
327int X509_aux_print(BIO *out, X509 *x, int indent)-
328{-
329 char oidstr[80], first;-
330 STACK_OF(ASN1_OBJECT) *trust, *reject;-
331 const unsigned char *alias, *keyid;-
332 int keyidlen;-
333 int i;-
334 if (X509_trusted(x) == 0)
X509_trusted(x) == 0Description
TRUEevaluated 1346 times by 1 test
Evaluated by:
  • libcrypto.so.1.1
FALSEnever evaluated
0-1346
335 return 1;
executed 1346 times by 1 test: return 1;
Executed by:
  • libcrypto.so.1.1
1346
336 trust = X509_get0_trust_objects(x);-
337 reject = X509_get0_reject_objects(x);-
338 if (trust) {
trustDescription
TRUEnever evaluated
FALSEnever evaluated
0
339 first = 1;-
340 BIO_printf(out, "%*sTrusted Uses:\n%*s", indent, "", indent + 2, "");-
341 for (i = 0; i < sk_ASN1_OBJECT_num(trust); i++) {
i < sk_ASN1_OBJECT_num(trust)Description
TRUEnever evaluated
FALSEnever evaluated
0
342 if (!first)
!firstDescription
TRUEnever evaluated
FALSEnever evaluated
0
343 BIO_puts(out, ", ");
never executed: BIO_puts(out, ", ");
0
344 else-
345 first = 0;
never executed: first = 0;
0
346 OBJ_obj2txt(oidstr, sizeof(oidstr),-
347 sk_ASN1_OBJECT_value(trust, i), 0);-
348 BIO_puts(out, oidstr);-
349 }
never executed: end of block
0
350 BIO_puts(out, "\n");-
351 } else
never executed: end of block
0
352 BIO_printf(out, "%*sNo Trusted Uses.\n", indent, "");
never executed: BIO_printf(out, "%*sNo Trusted Uses.\n", indent, "");
0
353 if (reject) {
rejectDescription
TRUEnever evaluated
FALSEnever evaluated
0
354 first = 1;-
355 BIO_printf(out, "%*sRejected Uses:\n%*s", indent, "", indent + 2, "");-
356 for (i = 0; i < sk_ASN1_OBJECT_num(reject); i++) {
i < sk_ASN1_OBJECT_num(reject)Description
TRUEnever evaluated
FALSEnever evaluated
0
357 if (!first)
!firstDescription
TRUEnever evaluated
FALSEnever evaluated
0
358 BIO_puts(out, ", ");
never executed: BIO_puts(out, ", ");
0
359 else-
360 first = 0;
never executed: first = 0;
0
361 OBJ_obj2txt(oidstr, sizeof(oidstr),-
362 sk_ASN1_OBJECT_value(reject, i), 0);-
363 BIO_puts(out, oidstr);-
364 }
never executed: end of block
0
365 BIO_puts(out, "\n");-
366 } else
never executed: end of block
0
367 BIO_printf(out, "%*sNo Rejected Uses.\n", indent, "");
never executed: BIO_printf(out, "%*sNo Rejected Uses.\n", indent, "");
0
368 alias = X509_alias_get0(x, NULL);-
369 if (alias)
aliasDescription
TRUEnever evaluated
FALSEnever evaluated
0
370 BIO_printf(out, "%*sAlias: %s\n", indent, "", alias);
never executed: BIO_printf(out, "%*sAlias: %s\n", indent, "", alias);
0
371 keyid = X509_keyid_get0(x, &keyidlen);-
372 if (keyid) {
keyidDescription
TRUEnever evaluated
FALSEnever evaluated
0
373 BIO_printf(out, "%*sKey Id: ", indent, "");-
374 for (i = 0; i < keyidlen; i++)
i < keyidlenDescription
TRUEnever evaluated
FALSEnever evaluated
0
375 BIO_printf(out, "%s%02X", i ? ":" : "", keyid[i]);
never executed: BIO_printf(out, "%s%02X", i ? ":" : "", keyid[i]);
0
376 BIO_write(out, "\n", 1);-
377 }
never executed: end of block
0
378 return 1;
never executed: return 1;
0
379}-
Source codeSwitch to Preprocessed file

Generated by Squish Coco 4.2.2