@@ -21,31 +21,31 @@ OF_ASSUME_NONNULL_BEGIN @class OFData; -/*! +/** * @brief An ASN.1 BitString. */ OF_SUBCLASSING_RESTRICTED @interface OFASN1BitString: OFObject { OFData *_bitStringValue; size_t _bitStringLength; } -/*! +/** * @brief The BitString value. */ @property (readonly, nonatomic) OFData *bitStringValue; -/*! +/** * @brief The length of the BitString in bits. */ @property (readonly, nonatomic) size_t bitStringLength; -/*! +/** * @brief Creates an ASN.1 BitString with the specified BitString value and * length. * * @param bitStringValue The value of the BitString * @param bitStringLength The length of the BitString in bits @@ -54,11 +54,11 @@ + (instancetype)bitStringWithBitStringValue: (OFData *)bitStringValue bitStringLength: (size_t)bitStringLength; - (instancetype)init OF_UNAVAILABLE; -/*! +/** * @brief Initializes an already allocated ASN.1 BitString with the specified * BitString value and length. * * @param bitStringValue The value of the BitString * @param bitStringLength The length of the BitString in bits @@ -66,11 +66,11 @@ */ - (instancetype)initWithBitStringValue: (OFData *)bitStringValue bitStringLength: (size_t)bitStringLength OF_DESIGNATED_INITIALIZER; -/*! +/** * @brief Initializes an already allocated ASN.1 BitString with the specified * arguments. * * @param tagClass The tag class of the value's type * @param tagNumber The tag number of the value's type