Differences From Artifact [3333d71ead]:
- File
src/OFMD5Hash.m
— part of check-in
[7c27db9fe0]
at
2015-02-01 00:47:18
on branch trunk
— Add -[OFHash reset]
This is useful to calculate many hashes without allocating new objects. (user: js, size: 4765) [annotate] [blame] [check-ins using]
To Artifact [353f7b18b1]:
- File
src/OFMD5Hash.m
— part of check-in
[48980f2297]
at
2015-11-29 11:43:05
on branch trunk
— Make properties a requirement and clean up code
This increases the required GCC version from 4.0 to 4.6 (exception:
Apple GCC, which already supports this with >= 4.0 starting with OS X
10.5). Since even GCC 4.6 is really old by now, there is no point in
still supporting something even older and making the code ugly because
of that. While some hardware and OS support was dropped from GCC 4.6
compared to GCC 4.0, there is nothing in there that would be an
interesting target with the exception of BeOS maybe - but a port to BeOS
can also be achieved using the Haiku support. The other dropped OSes are
mostly old versions of OSes while newer ones are still being supported
(and those newer versions of those OSes still support the same
hardware). (user: js, size: 4757) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
111 112 113 114 115 116 117 118 119 120 121 122 123 124 | state[0] += new[0]; state[1] += new[1]; state[2] += new[2]; state[3] += new[3]; } @implementation OFMD5Hash + (size_t)digestSize { return 16; } + (size_t)blockSize { | > > | 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 | state[0] += new[0]; state[1] += new[1]; state[2] += new[2]; state[3] += new[3]; } @implementation OFMD5Hash @synthesize calculated = _calculated; + (size_t)digestSize { return 16; } + (size_t)blockSize { |
︙ | ︙ | |||
197 198 199 200 201 202 203 | memset(&_buffer, 0, sizeof(_buffer)); byteSwapVectorIfBE(_state, 4); _calculated = true; return (const uint8_t*)_state; } | < < < < < | 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 | memset(&_buffer, 0, sizeof(_buffer)); byteSwapVectorIfBE(_state, 4); _calculated = true; return (const uint8_t*)_state; } - (void)reset { [self OF_resetState]; _bits = 0; memset(&_buffer, 0, sizeof(_buffer)); _bufferLength = 0; _calculated = false; } @end |