Differences From Artifact [ce3a4d009e]:
- File
src/OFASN1Integer.h
— part of check-in
[d74f244ab7]
at
2020-08-12 20:56:32
on branch trunk
— Avoid using (u)intmax_t in methods
It is not guaranteed that a type encoding for it exists. (user: js, size: 2089) [annotate] [blame] [check-ins using] [more...]
To Artifact [a73f7cf242]:
- File src/OFASN1Integer.h — part of check-in [163a4a5a2e] at 2020-10-03 11:35:41 on branch trunk — Use /** */ instead of /*! */ for documentation (user: js, size: 2089) [annotate] [blame] [check-ins using] [more...]
︙ | ︙ | |||
16 17 18 19 20 21 22 | */ #import "OFObject.h" #import "OFASN1Value.h" OF_ASSUME_NONNULL_BEGIN | | | | | | | 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 56 57 58 59 60 61 62 63 | */ #import "OFObject.h" #import "OFASN1Value.h" OF_ASSUME_NONNULL_BEGIN /** * @brief An ASN.1 Integer. */ OF_SUBCLASSING_RESTRICTED @interface OFASN1Integer: OFObject { long long _longLongValue; } /** * @brief The Integer value. */ @property (readonly, nonatomic) long long longLongValue; /** * @brief Creates an ASN.1 Integer with the specified integer value. * * @param value The `long long` value of the Integer * @return A new, autoreleased OFASN1Integer */ + (instancetype)integerWithLongLong: (long long)value; - (instancetype)init OF_UNAVAILABLE; /** * @brief Initializes an already allocated ASN.1 Integer with the specified * integer value. * * @param value The `long long` value of the Integer * @return An initialized OFASN1Integer */ - (instancetype)initWithLongLong: (long long)value OF_DESIGNATED_INITIALIZER; /** * @brief Initializes an already allocated ASN.1 Integer 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. |
︙ | ︙ |