/src/openssl/crypto/asn1/t_pkey.c
Line  | Count  | Source  | 
1  |  | /*  | 
2  |  |  * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.  | 
3  |  |  *  | 
4  |  |  * Licensed under the Apache License 2.0 (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/objects.h>  | 
13  |  | #include <openssl/buffer.h>  | 
14  |  | #include "crypto/bn.h"  | 
15  |  |  | 
16  |  | /* Number of octets per line */  | 
17  | 0  | #define ASN1_BUF_PRINT_WIDTH    15  | 
18  |  | /* Maximum indent */  | 
19  | 0  | #define ASN1_PRINT_MAX_INDENT 128  | 
20  |  |  | 
21  |  | int ASN1_buf_print(BIO *bp, const unsigned char *buf, size_t buflen, int indent)  | 
22  | 0  | { | 
23  | 0  |     size_t i;  | 
24  |  | 
  | 
25  | 0  |     for (i = 0; i < buflen; i++) { | 
26  | 0  |         if ((i % ASN1_BUF_PRINT_WIDTH) == 0) { | 
27  | 0  |             if (i > 0 && BIO_puts(bp, "\n") <= 0)  | 
28  | 0  |                 return 0;  | 
29  | 0  |             if (!BIO_indent(bp, indent, ASN1_PRINT_MAX_INDENT))  | 
30  | 0  |                 return 0;  | 
31  | 0  |         }  | 
32  |  |         /*  | 
33  |  |          * Use colon separators for each octet for compatibility as  | 
34  |  |          * this function is used to print out key components.  | 
35  |  |          */  | 
36  | 0  |         if (BIO_printf(bp, "%02x%s", buf[i],  | 
37  | 0  |                        (i == buflen - 1) ? "" : ":") <= 0)  | 
38  | 0  |                 return 0;  | 
39  | 0  |     }  | 
40  | 0  |     if (BIO_write(bp, "\n", 1) <= 0)  | 
41  | 0  |         return 0;  | 
42  | 0  |     return 1;  | 
43  | 0  | }  | 
44  |  |  | 
45  |  | int ASN1_bn_print(BIO *bp, const char *number, const BIGNUM *num,  | 
46  |  |                   unsigned char *ign, int indent)  | 
47  | 0  | { | 
48  | 0  |     int n, rv = 0;  | 
49  | 0  |     const char *neg;  | 
50  | 0  |     unsigned char *buf = NULL, *tmp = NULL;  | 
51  | 0  |     int buflen;  | 
52  |  | 
  | 
53  | 0  |     if (num == NULL)  | 
54  | 0  |         return 1;  | 
55  | 0  |     neg = BN_is_negative(num) ? "-" : "";  | 
56  | 0  |     if (!BIO_indent(bp, indent, ASN1_PRINT_MAX_INDENT))  | 
57  | 0  |         return 0;  | 
58  | 0  |     if (BN_is_zero(num)) { | 
59  | 0  |         if (BIO_printf(bp, "%s 0\n", number) <= 0)  | 
60  | 0  |             return 0;  | 
61  | 0  |         return 1;  | 
62  | 0  |     }  | 
63  |  |  | 
64  | 0  |     if (BN_num_bytes(num) <= BN_BYTES) { | 
65  | 0  |         if (BIO_printf(bp, "%s %s%lu (%s0x%lx)\n", number, neg,  | 
66  | 0  |                        (unsigned long)bn_get_words(num)[0], neg,  | 
67  | 0  |                        (unsigned long)bn_get_words(num)[0]) <= 0)  | 
68  | 0  |             return 0;  | 
69  | 0  |         return 1;  | 
70  | 0  |     }  | 
71  |  |  | 
72  | 0  |     buflen = BN_num_bytes(num) + 1;  | 
73  | 0  |     buf = tmp = OPENSSL_malloc(buflen);  | 
74  | 0  |     if (buf == NULL)  | 
75  | 0  |         goto err;  | 
76  | 0  |     buf[0] = 0;  | 
77  | 0  |     if (BIO_printf(bp, "%s%s\n", number,  | 
78  | 0  |                    (neg[0] == '-') ? " (Negative)" : "") <= 0)  | 
79  | 0  |         goto err;  | 
80  | 0  |     n = BN_bn2bin(num, buf + 1);  | 
81  |  | 
  | 
82  | 0  |     if (buf[1] & 0x80)  | 
83  | 0  |         n++;  | 
84  | 0  |     else  | 
85  | 0  |         tmp++;  | 
86  |  | 
  | 
87  | 0  |     if (ASN1_buf_print(bp, tmp, n, indent + 4) == 0)  | 
88  | 0  |         goto err;  | 
89  | 0  |     rv = 1;  | 
90  | 0  |     err:  | 
91  | 0  |     OPENSSL_clear_free(buf, buflen);  | 
92  | 0  |     return rv;  | 
93  | 0  | }  |