Differences From Artifact [2c948a64a3]:
- File src/OFASN1IA5String.m — 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: 1737) [annotate] [blame] [check-ins using]
To Artifact [25dbe148e7]:
- File src/OFASN1IA5String.m — part of check-in [d3207b2a3d] at 2018-10-13 22:58:53 on branch trunk — OFASN1*: Add -[description] (user: js, size: 1856) [annotate] [blame] [check-ins using]
| ︙ | |||
61 62 63 64 65 66 67 68 | 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | + + + + + + |
[super dealloc];
}
- (OFString *)stringValue
{
return [self IA5StringValue];
}
- (OFString *)description
{
return [OFString stringWithFormat: @"<OFASN1IA5String: %@>",
_IA5StringValue];
}
@end
|