summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/asn1/a_print.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/libcrypto/asn1/a_print.c')
-rw-r--r--src/lib/libcrypto/asn1/a_print.c91
1 files changed, 50 insertions, 41 deletions
diff --git a/src/lib/libcrypto/asn1/a_print.c b/src/lib/libcrypto/asn1/a_print.c
index 9e421dba66..3e9a7c0f40 100644
--- a/src/lib/libcrypto/asn1/a_print.c
+++ b/src/lib/libcrypto/asn1/a_print.c
@@ -5,21 +5,21 @@
5 * This package is an SSL implementation written 5 * This package is an SSL implementation written
6 * by Eric Young (eay@cryptsoft.com). 6 * by Eric Young (eay@cryptsoft.com).
7 * The implementation was written so as to conform with Netscapes SSL. 7 * The implementation was written so as to conform with Netscapes SSL.
8 * 8 *
9 * This library is free for commercial and non-commercial use as long as 9 * This library is free for commercial and non-commercial use as long as
10 * the following conditions are aheared to. The following conditions 10 * the following conditions are aheared to. The following conditions
11 * apply to all code found in this distribution, be it the RC4, RSA, 11 * apply to all code found in this distribution, be it the RC4, RSA,
12 * lhash, DES, etc., code; not just the SSL code. The SSL documentation 12 * lhash, DES, etc., code; not just the SSL code. The SSL documentation
13 * included with this distribution is covered by the same copyright terms 13 * included with this distribution is covered by the same copyright terms
14 * except that the holder is Tim Hudson (tjh@cryptsoft.com). 14 * except that the holder is Tim Hudson (tjh@cryptsoft.com).
15 * 15 *
16 * Copyright remains Eric Young's, and as such any Copyright notices in 16 * Copyright remains Eric Young's, and as such any Copyright notices in
17 * the code are not to be removed. 17 * the code are not to be removed.
18 * If this package is used in a product, Eric Young should be given attribution 18 * If this package is used in a product, Eric Young should be given attribution
19 * as the author of the parts of the library used. 19 * as the author of the parts of the library used.
20 * This can be in the form of a textual message at program startup or 20 * This can be in the form of a textual message at program startup or
21 * in documentation (online or textual) provided with the package. 21 * in documentation (online or textual) provided with the package.
22 * 22 *
23 * Redistribution and use in source and binary forms, with or without 23 * Redistribution and use in source and binary forms, with or without
24 * modification, are permitted provided that the following conditions 24 * modification, are permitted provided that the following conditions
25 * are met: 25 * are met:
@@ -34,10 +34,10 @@
34 * Eric Young (eay@cryptsoft.com)" 34 * Eric Young (eay@cryptsoft.com)"
35 * The word 'cryptographic' can be left out if the rouines from the library 35 * The word 'cryptographic' can be left out if the rouines from the library
36 * being used are not cryptographic related :-). 36 * being used are not cryptographic related :-).
37 * 4. If you include any Windows specific code (or a derivative thereof) from 37 * 4. If you include any Windows specific code (or a derivative thereof) from
38 * the apps directory (application code) you must include an acknowledgement: 38 * the apps directory (application code) you must include an acknowledgement:
39 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)" 39 * "This product includes software written by Tim Hudson (tjh@cryptsoft.com)"
40 * 40 *
41 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND 41 * THIS SOFTWARE IS PROVIDED BY ERIC YOUNG ``AS IS'' AND
42 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 42 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
43 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 43 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
@@ -49,7 +49,7 @@
49 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 49 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 50 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
51 * SUCH DAMAGE. 51 * SUCH DAMAGE.
52 * 52 *
53 * The licence and distribution terms for any publically available version or 53 * The licence and distribution terms for any publically available version or
54 * derivative of this code cannot be changed. i.e. this code cannot simply be 54 * derivative of this code cannot be changed. i.e. this code cannot simply be
55 * copied and put under another distribution licence 55 * copied and put under another distribution licence
@@ -60,57 +60,66 @@
60#include "cryptlib.h" 60#include "cryptlib.h"
61#include <openssl/asn1.h> 61#include <openssl/asn1.h>
62 62
63int ASN1_PRINTABLE_type(const unsigned char *s, int len) 63int
64ASN1_PRINTABLE_type(const unsigned char *s, int len)
64{ 65{
65 int c; 66 int c;
66 int ia5=0; 67 int ia5 = 0;
67 int t61=0; 68 int t61 = 0;
68 69
69 if (len <= 0) len= -1; 70 if (len <= 0)
70 if (s == NULL) return(V_ASN1_PRINTABLESTRING); 71 len = -1;
72 if (s == NULL)
73 return (V_ASN1_PRINTABLESTRING);
71 74
72 while ((*s) && (len-- != 0)) { 75 while ((*s) && (len-- != 0)) {
73 c= *(s++); 76 c= *(s++);
74 if (!( ((c >= 'a') && (c <= 'z')) || 77 if (!(((c >= 'a') && (c <= 'z')) ||
75 ((c >= 'A') && (c <= 'Z')) || 78 ((c >= 'A') && (c <= 'Z')) ||
76 (c == ' ') || 79 (c == ' ') ||
77 ((c >= '0') && (c <= '9')) || 80 ((c >= '0') && (c <= '9')) ||
78 (c == ' ') || (c == '\'') || 81 (c == ' ') || (c == '\'') ||
79 (c == '(') || (c == ')') || 82 (c == '(') || (c == ')') ||
80 (c == '+') || (c == ',') || 83 (c == '+') || (c == ',') ||
81 (c == '-') || (c == '.') || 84 (c == '-') || (c == '.') ||
82 (c == '/') || (c == ':') || 85 (c == '/') || (c == ':') ||
83 (c == '=') || (c == '?'))) 86 (c == '=') || (c == '?')))
84 ia5=1; 87 ia5 = 1;
85 if (c&0x80) 88 if (c & 0x80)
86 t61=1; 89 t61 = 1;
87 } 90 }
88 if (t61) return(V_ASN1_T61STRING); 91 if (t61)
89 if (ia5) return(V_ASN1_IA5STRING); 92 return (V_ASN1_T61STRING);
90 return(V_ASN1_PRINTABLESTRING); 93 if (ia5)
94 return (V_ASN1_IA5STRING);
95 return (V_ASN1_PRINTABLESTRING);
91} 96}
92 97
93int ASN1_UNIVERSALSTRING_to_string(ASN1_UNIVERSALSTRING *s) 98int
99ASN1_UNIVERSALSTRING_to_string(ASN1_UNIVERSALSTRING *s)
94{ 100{
95 int i; 101 int i;
96 unsigned char *p; 102 unsigned char *p;
97 103
98 if (s->type != V_ASN1_UNIVERSALSTRING) return(0); 104 if (s->type != V_ASN1_UNIVERSALSTRING)
99 if ((s->length%4) != 0) return(0); 105 return (0);
100 p=s->data; 106 if ((s->length % 4) != 0)
101 for (i=0; i<s->length; i+=4) { 107 return (0);
108 p = s->data;
109 for (i = 0; i < s->length; i += 4) {
102 if ((p[0] != '\0') || (p[1] != '\0') || (p[2] != '\0')) 110 if ((p[0] != '\0') || (p[1] != '\0') || (p[2] != '\0'))
103 break; 111 break;
104 else 112 else
105 p+=4; 113 p += 4;
106 } 114 }
107 if (i < s->length) return(0); 115 if (i < s->length)
108 p=s->data; 116 return (0);
109 for (i=3; i<s->length; i+=4) { 117 p = s->data;
110 *(p++)=s->data[i]; 118 for (i = 3; i < s->length; i += 4) {
119 *(p++) = s->data[i];
111 } 120 }
112 *(p)='\0'; 121 *(p) = '\0';
113 s->length/=4; 122 s->length /= 4;
114 s->type=ASN1_PRINTABLE_type(s->data,s->length); 123 s->type = ASN1_PRINTABLE_type(s->data, s->length);
115 return(1); 124 return (1);
116} 125}