Differences From Artifact [ec48849d8d]:
- File
src/OFASN1BitString.h
— part of check-in
[c60933a59b]
at
2019-02-09 17:44:00
on branch trunk
— OFASN1*: Add designated initializer
This is in preparation for DER serialization support. (user: js, size: 2515) [annotate] [blame] [check-ins using]
To Artifact [0137a88b8d]:
- File src/OFASN1BitString.h — part of check-in [ea6e0818b0] at 2019-06-23 22:53:38 on branch trunk — Add -[OFASN1BitString DEREncodedValue] (user: js, size: 2622) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
37 38 39 40 41 42 43 44 45 46 47 48 49 50 | @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 | > > > > > | 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 | @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 |
︙ | ︙ |