Fix ASN1_STRING_to_UTF8 could not convert NumericString
authorMatt Caswell <matt@openssl.org>
Thu, 23 Jun 2016 18:54:06 +0000 (19:54 +0100)
committerMatt Caswell <matt@openssl.org>
Thu, 23 Jun 2016 19:51:28 +0000 (20:51 +0100)
tag2nbyte had -1 at 18th position, but underlying ASN1_mbstring_copy
supports NumericString. tag2nbyte is also used in do_print_ex which will
not be broken by setting 1 at 18th position of tag2nbyte

Reviewed-by: Stephen Henson <steve@openssl.org>
(cherry picked from commit d6079a87db58ad17550b5d00a74512464e6a029e)

crypto/asn1/a_strex.c

index 35fd44cd22b8e7438aad1fbdd257913c893cf682..2d562f93452f1d46c538d4b704dff18c2685b2ca 100644 (file)
@@ -337,7 +337,7 @@ static const signed char tag2nbyte[] = {
     -1, -1, -1, -1, -1,         /* 5-9 */
     -1, -1, 0, -1,              /* 10-13 */
     -1, -1, -1, -1,             /* 15-17 */
-    -1, 1, 1,                   /* 18-20 */
+    1, 1, 1,                    /* 18-20 */
     -1, 1, 1, 1,                /* 21-24 */
     -1, 1, -1,                  /* 25-27 */
     4, -1, 2                    /* 28-30 */