Differences From Artifact [83c5ccc85f]:
- File src/OFNull.m — part of check-in [26ddd2e4e4] at 2024-01-02 17:17:25 on branch trunk — Update copyright (user: js, size: 1549) [annotate] [blame] [check-ins using] [more...]
To Artifact [bd50904874]:
- File src/OFNull.m — part of check-in [4320b1bf7d] at 2024-01-11 20:12:08 on branch asn1 — Merge trunk into branch "asn1" (user: js, size: 1707) [annotate] [blame] [check-ins using] [more...]
| ︙ | |||
69 70 71 72 73 74 75 76 77 78 | 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 | + + + + + + |
}
- (OFData *)messagePackRepresentation
{
uint8_t type = 0xC0;
return [OFData dataWithItems: &type count: 1];
}
- (OFData *)ASN1DERRepresentation
{
const unsigned char bytes[] = { OFASN1TagNumberNull, 0 };
return [OFData dataWithItems: bytes count: sizeof(bytes)];
}
OF_SINGLETON_METHODS
@end
|