ObjFW  Diff

Differences From Artifact [5546a22768]:

  • File src/OFASN1UTF8String.h — part of check-in [d276166f70] at 2018-10-13 21:40:15 on branch trunk — Initial ASN.1 DER parsing support (user: js size: 903)

To Artifact [e216804d88]:

  • File src/OFASN1UTF8String.h — part of check-in [6410235ae3] at 2018-10-13 22:43:49 on branch trunk — Add more ASN.1 string types (IA5 and octet string) (user: js size: 1009)

22
23
24
25
26
27
28
29
30
31





32
33
34
35
36
37
38
@class OFString;

/*!
 * @brief An ASN.1 UTF-8 string.
 */
@interface OFASN1UTF8String: OFASN1Value
{
	OFString *_stringValue;
}






/*!
 * @brief The string value.
 */
@property (readonly, nonatomic) OFString *stringValue;
@end

OF_ASSUME_NONNULL_END







|


>
>
>
>
>







22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
@class OFString;

/*!
 * @brief An ASN.1 UTF-8 string.
 */
@interface OFASN1UTF8String: OFASN1Value
{
	OFString *_UTF8StringValue;
}

/*!
 * @brief The UTF-8 string value.
 */
@property (readonly, nonatomic) OFString *UTF8StringValue;

/*!
 * @brief The string value.
 */
@property (readonly, nonatomic) OFString *stringValue;
@end

OF_ASSUME_NONNULL_END