@@ -12,11 +12,10 @@ * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this * file. */ #import "OFObject.h" -#import "OFSerialization.h" #import "OFMessagePackRepresentation.h" /*! @file */ OF_ASSUME_NONNULL_BEGIN @@ -36,16 +35,13 @@ /** * @class OFData OFData.h ObjFW/OFData.h * * @brief A class for storing arbitrary data in an array. - * - * For security reasons, serialization and deserialization is only implemented - * for OFData with item size 1. */ @interface OFData: OFObject + OFMessagePackRepresentation> { unsigned char *_Nullable _items; size_t _count, _itemSize; bool _freeWhenDone; @private