Differences From Artifact [81c7fe9aca]:
- File src/OFSHA224Or256Hash.h — part of check-in [cfd374b906] at 2015-01-03 20:57:18 on branch trunk — Update copyright (user: js size: 925)
To Artifact [257314d339]:
- File src/OFSHA224Or256Hash.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: 949)
| ︙ | ︙ | |||
28 29 30 31 32 33 34 35 |
union {
uint8_t bytes[64];
uint32_t words[64];
} _buffer;
size_t _bufferLength;
bool _calculated;
}
@end
| > > | 28 29 30 31 32 33 34 35 36 37 |
union {
uint8_t bytes[64];
uint32_t words[64];
} _buffer;
size_t _bufferLength;
bool _calculated;
}
- (void)OF_resetState;
@end
|