Differences From Artifact [4b27eef996]:
- File src/OFRIPEMD160Hash.h — part of check-in [0509d7a844] at 2019-01-03 19:13:03 on branch trunk — Update copyright (user: js size: 1161)
To Artifact [8064412ceb]:
- File src/OFRIPEMD160Hash.h — part of check-in [496695d778] at 2019-09-29 19:35:38 on branch trunk — Either restrict subclassing or reserve ivar space This allows ABI stability with the fragile ABI. (user: js size: 1187) [more...]
| ︙ | |||
22 23 24 25 26 27 28 29 30 31 32 33 34 35 | 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | + |
@class OFSecureData;
/*!
* @class OFRIPEMD160Hash OFRIPEMD160Hash.h ObjFW/OFRIPEMD160Hash.h
*
* @brief A class which provides methods to create a RIPEMD-160 hash.
*/
OF_SUBCLASSING_RESTRICTED
@interface OFRIPEMD160Hash: OFObject <OFCryptoHash>
{
OFSecureData *_iVarsData;
struct of_ripemd160_hash_ivars {
uint32_t state[5];
uint64_t bits;
union of_ripemd160_hash_buffer {
|
| ︙ |