ObjFW  Diff

Differences From Artifact [ae373739b8]:

To Artifact [57247a8096]:


19
20
21
22
23
24
25
26

27
28

29
30

31
32
33

34
35
36
37

38
39
40
41
42
43
44
19
20
21
22
23
24
25

26
27

28
29

30
31
32

33
34
35
36

37
38
39
40
41
42
43
44







-
+

-
+

-
+


-
+



-
+







#import "OFData.h"
#import "OFString.h"

#import "OFInvalidArgumentException.h"
#import "OFInvalidFormatException.h"

@implementation OFASN1Boolean
@synthesize booleanValue = _booleanValue;
@synthesize boolValue = _boolValue;

+ (instancetype)booleanWithBooleanValue: (bool)booleanValue
+ (instancetype)booleanWithBool: (bool)bool_
{
	return [[[self alloc] initWithBooleanValue: booleanValue] autorelease];
	return [[[self alloc] initWithBool: bool_] autorelease];
}

- (instancetype)initWithBooleanValue: (bool)booleanValue
- (instancetype)initWithBool: (bool)bool_
{
	self = [super init];

	_booleanValue = booleanValue;
	_boolValue = bool_;

	return self;
}

- (instancetype)initWithTagClass: (of_asn1_tag_class_t)tagClass
		       tagNumber: (of_asn1_tag_number_t)tagNumber
		     constructed: (bool)constructed
60
61
62
63
64
65
66
67

68
69
70
71
72
73
74
75
76
77
78
79
80

81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98

99
100
101
102
103
104
105
106

107
108
109
110
111

112
113
114
115
60
61
62
63
64
65
66

67
68
69
70
71
72
73
74
75
76
77
78
79

80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97

98
99
100
101
102
103
104
105

106
107
108
109
110

111
112
113
114
115







-
+












-
+

















-
+







-
+




-
+




		if (value != 0 && value != 0xFF)
			@throw [OFInvalidFormatException exception];
	} @catch (id e) {
		[self release];
		@throw e;
	}

	return [self initWithBooleanValue: !!value];
	return [self initWithBool: !!value];
}

- (instancetype)init
{
	OF_INVALID_INIT_METHOD
}

- (OFData *)ASN1DERRepresentation
{
	char buffer[] = {
		OF_ASN1_TAG_NUMBER_BOOLEAN,
		1,
		(_booleanValue ? 0xFF : 0x00)
		(_boolValue ? 0xFF : 0x00)
	};

	return [OFData dataWithItems: buffer count: sizeof(buffer)];
}

- (bool)isEqual: (id)object
{
	OFASN1Boolean *boolean;

	if (object == self)
		return true;

	if (![object isKindOfClass: [OFASN1Boolean class]])
		return false;

	boolean = object;

	if (boolean->_booleanValue != _booleanValue)
	if (boolean->_boolValue != _boolValue)
		return false;

	return true;
}

- (unsigned long)hash
{
	return _booleanValue;
	return _boolValue;
}

- (OFString *)description
{
	return (_booleanValue
	return (_boolValue
	    ? @"<OFASN1Boolean: true>"
	    : @"<OFASN1Boolean: false>");
}
@end