Differences From Artifact [cfc249c62f]:
- File src/OFSHA384Or512Hash.h — part of check-in [35934a9594] at 2017-04-02 16:02:52 on branch trunk — Avoid the anonymous namespace for ObjC++ with GCC (user: js, size: 1053) [annotate] [blame] [check-ins using]
To Artifact [557203084b]:
- File
src/OFSHA384Or512Hash.h
— part of check-in
[6b77a5dd8b]
at
2017-05-21 21:28:57
on branch trunk
— Prefix private methods with of_ instead of OF_
This matches Apple's style. (user: js, size: 1029) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
30 31 32 33 34 35 36 |
union of_sha_384_or_512_hash_buffer {
uint8_t bytes[128];
uint64_t words[80];
} _buffer;
size_t _bufferLength;
bool _calculated;
}
| < < | 30 31 32 33 34 35 36 37 38 39 |
union of_sha_384_or_512_hash_buffer {
uint8_t bytes[128];
uint64_t words[80];
} _buffer;
size_t _bufferLength;
bool _calculated;
}
@end
OF_ASSUME_NONNULL_END
|