@@ -21,24 +21,24 @@ OF_ASSUME_NONNULL_BEGIN #ifdef __cplusplus extern "C" { #endif -extern int _OFData_ASN1DERValue_reference; +extern int _OFData_ASN1DERParsing_reference; #ifdef __cplusplus } #endif -@interface OFData (ASN1DERValue) +@interface OFData (ASN1DERParsing) /*! * @brief The data interpreted as ASN.1 in DER representation and parsed as an * object. * * This is either an OFArray (for a sequence), an OFSet (for a set) or an * OFASN1Value. */ -@property (readonly, nonatomic) id ASN1DERValue; +@property (readonly, nonatomic) id objectByParsingASN1DER; /*! * @brief Parses the ASN.1 DER representation and returns it as an object. * * This is either an OFArray (for a sequence), an OFSet (for a set) or an @@ -46,9 +46,9 @@ * * @param depthLimit The maximum depth the parser should accept (defaults to 32 * if not specified, 0 means no limit (insecure!)) * @return The ASN.1 DER representation as an object */ -- (id)ASN1DERValueWithDepthLimit: (size_t)depthLimit; +- (id)objectByParsingASN1DERWithDepthLimit: (size_t)depthLimit; @end OF_ASSUME_NONNULL_END