@@ -58,11 +58,11 @@ * @brief Adds a buffer to the cryptographic hash 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 cryptographic hash. * @@ -69,11 +69,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 Resets all state so that a new hash can be calculated. * * @warning This invalidates any pointer previously returned by @ref digest. If