Differences From Artifact [d13d87a9f5]:
- File src/OFSHA384Or512Hash.h — part of check-in [cfd374b906] at 2015-01-03 20:57:18 on branch trunk — Update copyright (user: js, size: 929) [annotate] [blame] [check-ins using]
To Artifact [468a3cb6e2]:
- File
src/OFSHA384Or512Hash.h
— 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: 953) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
28 29 30 31 32 33 34 35 |
union {
uint8_t bytes[128];
uint64_t words[80];
} _buffer;
size_t _bufferLength;
bool _calculated;
}
@end
| > > | 28 29 30 31 32 33 34 35 36 37 |
union {
uint8_t bytes[128];
uint64_t words[80];
} _buffer;
size_t _bufferLength;
bool _calculated;
}
- (void)OF_resetState;
@end
|