/*
* Copyright (c) 2008, 2009, 2010, 2011, 2012, 2013, 2014, 2015, 2016, 2017,
* 2018, 2019
* Jonathan Schleifer <js@heap.zone>
*
* All rights reserved.
*
* This file is part of ObjFW. It may be distributed under the terms of the
* Q Public License 1.0, which can be found in the file LICENSE.QPL included in
* the packaging of this file.
*
* Alternatively, it may be distributed under the terms of the GNU General
* Public License, either version 2 or 3, which can be found in the file
* LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this
* file.
*/
#import "OFObject.h"
#import "OFASN1Value.h"
OF_ASSUME_NONNULL_BEGIN
/*!
* @brief An ASN.1 Boolean.
*/
@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
*/
+ (instancetype)booleanWithBooleanValue: (bool)booleanValue;
- (instancetype)init OF_UNAVAILABLE;
/*!
* @brief Initializes an already allocated ASN.1 Boolean with the specified
* Boolean value.
*
* @param booleanValue The value of the Boolean
* @return An initialized OFASN1Boolean
*/
- (instancetype)initWithBooleanValue: (bool)booleanValue
OF_DESIGNATED_INITIALIZER;
/*!
* @brief Initializes an already allocated ASN.1 Boolean with the specified
* arguments.
*
* @param tagClass The tag class of the value's type
* @param tagNumber The tag number of the value's type
* @param constructed Whether the value if of a constructed type
* @param DEREncodedContents The DER-encoded contents octets of the value.
* @return An initialized OFASN1Boolean
*/
- (instancetype)initWithTagClass: (of_asn1_tag_class_t)tagClass
tagNumber: (of_asn1_tag_number_t)tagNumber
constructed: (bool)constructed
DEREncodedContents: (OFData *)DEREncodedContents;
@end
OF_ASSUME_NONNULL_END