67686970717273
else if (canBeUTF8(value)) { return new DERUTF8String(value); } return new DERBMPString(value); }
102103104105106107108109110111112
break; case CONTENT_TYPE_VISIBLESTRING: contents = (DERString)new DERVisibleString(text); break; case CONTENT_TYPE_BMPSTRING: contents = (DERString)new DERBMPString(text); break; default: contents = (DERString)new DERUTF8String(text); break; }
149150151152153154155156
contents = new DERUTF8String(text); } else { contentType = CONTENT_TYPE_BMPSTRING; contents = new DERBMPString(text); } }