Differences From Artifact [c6562613f5]:
- File src/OFASN1Boolean.m — part of check-in [f77aff5b45] at 2019-03-16 23:37:16 on branch trunk — Add -[OFASN1Boolean DEREncodedValue] (user: js, size: 2553) [annotate] [blame] [check-ins using]
To Artifact [661fbaff56]:
- File src/OFASN1Boolean.m — part of check-in [cbaae715ce] at 2019-06-25 20:53:23 on branch trunk — Add OFASN1DERRepresentation protocol (user: js, size: 2559) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
70 71 72 73 74 75 76 | } - (instancetype)init { OF_INVALID_INIT_METHOD } | | | 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 | } - (instancetype)init { OF_INVALID_INIT_METHOD } - (OFData *)ASN1DERRepresentation { char buffer[] = { OF_ASN1_TAG_NUMBER_BOOLEAN, 1, (_booleanValue ? 0xFF : 0x00) }; |
︙ | ︙ |