ObjFW  Diff

Differences From Artifact [0b19515ab4]:

  • File src/OFRIPEMD160Hash.h — part of check-in [c81086beeb] at 2021-04-19 21:07:40 on branch new-naming-convention — Rename all struct of_* (user: js size: 1127)

To Artifact [887ee4002d]:

  • File src/OFRIPEMD160Hash.h — part of check-in [458420998c] at 2021-04-19 21:54:35 on branch new-naming-convention — Rename a few more constants (user: js size: 1102) [more...]

27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
OF_SUBCLASSING_RESTRICTED
@interface OFRIPEMD160Hash: OFObject <OFCryptographicHash>
{
	OFSecureData *_iVarsData;
	struct {
		uint32_t state[5];
		uint64_t bits;
		union of_ripemd160_hash_buffer {
			unsigned char bytes[64];
			uint32_t words[16];
		} buffer;
		size_t bufferLength;
	} *_iVars;
	bool _allowsSwappableMemory;
	bool _calculated;







|







27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
OF_SUBCLASSING_RESTRICTED
@interface OFRIPEMD160Hash: OFObject <OFCryptographicHash>
{
	OFSecureData *_iVarsData;
	struct {
		uint32_t state[5];
		uint64_t bits;
		union {
			unsigned char bytes[64];
			uint32_t words[16];
		} buffer;
		size_t bufferLength;
	} *_iVars;
	bool _allowsSwappableMemory;
	bool _calculated;