@@ -44,11 +44,11 @@ [_innerHashCopy release]; [super dealloc]; } -- (void)setKey: (const void*)key +- (void)setKey: (const void *)key length: (size_t)length { void *pool = objc_autoreleasePoolPush(); size_t blockSize = [_hashClass blockSize]; uint8_t outerKeyPad[blockSize], innerKeyPad[blockSize]; @@ -98,11 +98,11 @@ _innerHashCopy = [_innerHash copy]; _calculated = false; } -- (void)updateWithBuffer: (const void*)buffer +- (void)updateWithBuffer: (const void *)buffer length: (size_t)length { if (_innerHash == nil) @throw [OFInvalidArgumentException exception]; @@ -112,11 +112,11 @@ [_innerHash updateWithBuffer: buffer length: length]; } -- (const unsigned char*)digest +- (const unsigned char *)digest { if (_outerHash == nil || _innerHash == nil) @throw [OFInvalidArgumentException exception]; if (_calculated)