Add UTF8String handling to Name attributes.

This commit is contained in:
thayes%netscape.com 2000-09-25 21:13:24 +00:00
Родитель 3e579f3b56
Коммит 9bbc4daa03
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -577,6 +577,10 @@ CERT_DecodeAVAValue(SECItem *derAVAValue)
convertUCS2toUTF8 = PR_TRUE;
theTemplate = SEC_BMPStringTemplate;
break;
case SEC_ASN1_UTF8_STRING:
/* No conversion needed ! */
theTemplate = SEC_UTF8StringTemplate;
break;
default:
return NULL;
}