Differences From Artifact [e92777fb67]:
- File
src/OFRIPEMD160Hash.h
— part of check-in
[44f45c2e35]
at
2017-01-09 17:36:36
on branch trunk
— Update copyright
Forgot to add 2017, even though I already did quite some changes in
2017. (user: js, size: 1033) [annotate] [blame] [check-ins using]
To Artifact [d03857c8ba]:
- File src/OFRIPEMD160Hash.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: 1059) [annotate] [blame] [check-ins using]
︙ | ︙ | |||
23 24 25 26 27 28 29 | * * @brief A class which provides methods to create a RIPEMD-160 hash. */ @interface OFRIPEMD160Hash: OFObject <OFCryptoHash> { uint32_t _state[5]; uint64_t _bits; | | | 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | * * @brief A class which provides methods to create a RIPEMD-160 hash. */ @interface OFRIPEMD160Hash: OFObject <OFCryptoHash> { uint32_t _state[5]; uint64_t _bits; union of_ripemd_160_hash_buffer { uint8_t bytes[64]; uint32_t words[16]; } _buffer; size_t _bufferLength; bool _calculated; } |
︙ | ︙ |