Index: src/OFHMAC.h ================================================================== --- src/OFHMAC.h +++ src/OFHMAC.h @@ -36,23 +36,23 @@ @property (assign, readonly) Class hashClass; /*! * @brief Returns a new OFHMAC with the specified hashing algorithm. * - * @param class The class of the hashing algorithm + * @param hashClass The class of the hashing algorithm * @return A new, autoreleased OFHMAC */ -+ (instancetype)HMACWithHashClass: (Class )class; ++ (instancetype)HMACWithHashClass: (Class )hashClass; /*! * @brief Initialized an already allocated OFHMAC with the specified hashing * algorithm. * - * @param class The class of the hashing algorithm + * @param hashClass The class of the hashing algorithm * @return An initialized OFHMAC */ -- initWithHashClass: (Class )class; +- initWithHashClass: (Class )hashClass; /*! * @brief Sets the key for the HMAC. * * @note This resets the HMAC!