@@ -62,20 +62,20 @@ * it yourself before calling @ref setKey:length:! * * @param key The key for the HMAC * @param length The length of the key for the HMAC */ -- (void)setKey: (const void*)key +- (void)setKey: (const void *)key length: (size_t)length; /*! * @brief Adds a buffer to the HMAC to be calculated. * * @param buffer The buffer which should be included into the calculation * @param length The length of the buffer */ -- (void)updateWithBuffer: (const void*)buffer +- (void)updateWithBuffer: (const void *)buffer length: (size_t)length; /*! * @brief Returns a buffer containing the HMAC. * @@ -82,11 +82,11 @@ * The size of the buffer depends on the hash used. The buffer is part of the * receiver's memory pool. * * @return A buffer containing the hash */ -- (const unsigned char*)digest OF_RETURNS_INNER_POINTER; +- (const unsigned char *)digest OF_RETURNS_INNER_POINTER; /*! * @brief Returns the size of the digest. * * @return The size of the digest.