12
13
14
15
16
17
18
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
45
46
47
48
49
50
51
52
53
54
55
|
* 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
@class OFData;
/*!
* @brief An ASN.1 BitString.
*/
@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 The BitString in DER encoding.
*/
@property (readonly, nonatomic) OFData *DEREncodedValue;
/*!
* @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
* @return A new, autoreleased OFASN1BitString
|
>
|
<
<
<
<
<
|
12
13
14
15
16
17
18
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
45
46
47
48
49
50
51
|
* 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 "OFASN1DERRepresentation.h"
#import "OFASN1Value.h"
OF_ASSUME_NONNULL_BEGIN
@class OFData;
/*!
* @brief An ASN.1 BitString.
*/
@interface OFASN1BitString: OFObject <OFASN1DERRepresentation>
{
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
* @return A new, autoreleased OFASN1BitString
|