cryptoservices/certificateandkeymgmt/asn1/utf8strdec.cpp
changeset 8 35751d3474b7
parent 0 2c201484c85f
equal deleted inserted replaced
2:675a964f4eb5 8:35751d3474b7
    16 * This file contains the implementation of the UTF8 String ASN1 class.
    16 * This file contains the implementation of the UTF8 String ASN1 class.
    17 * The IA5 string can contain the following characters:
    17 * The IA5 string can contain the following characters:
    18 * \<character set unknown pending arrival of ITU spec\>
    18 * \<character set unknown pending arrival of ITU spec\>
    19 *
    19 *
    20 */
    20 */
    21 
       
    22 
       
    23 
    21 
    24 
    22 
    25 /**
    23 /**
    26  @file
    24  @file
    27 */
    25 */
   218 		return KErrArgument;
   216 		return KErrArgument;
   219 		}
   217 		}
   220 	aUnicode.SetLength((pointerToCurrentUnicodeCharacter-aUnicode.Ptr())+1);
   218 	aUnicode.SetLength((pointerToCurrentUnicodeCharacter-aUnicode.Ptr())+1);
   221 	return pointerToLastUtf8Byte-pointerToCurrentUtf8Byte;
   219 	return pointerToLastUtf8Byte-pointerToCurrentUtf8Byte;
   222 	}
   220 	}
       
   221