@@ -14,32 +14,28 @@ * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this * file. */ #import "OFObject.h" +#import "OFASN1DERRepresentation.h" #import "OFASN1Value.h" OF_ASSUME_NONNULL_BEGIN /*! * @brief An ASN.1 Boolean. */ -@interface OFASN1Boolean: OFObject +@interface OFASN1Boolean: OFObject { bool _booleanValue; } /*! * @brief The Boolean value. */ @property (readonly, nonatomic) bool booleanValue; -/*! - * @brief The Boolean in DER encoding. - */ -@property (readonly, nonatomic) OFData *DEREncodedValue; - /*! * @brief Creates an ASN.1 Boolean with the specified Boolean value. * * @param booleanValue The value of the Boolean * @return A new, autoreleased OFASN1Boolean