@@ -71,8 +71,14 @@ - (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