ObjFW  Diff

Differences From Artifact [e0170a3623]:

To Artifact [bbea038319]:


21
22
23
24
25
26
27

28


29
30
31
32
33
34
35
/**
 * \brief A class which provides functions to create an MD5 hash.
 */
@interface OFMD5Hash: OFHash
{
	uint32_t buf[4];
	uint32_t bits[2];

	uint8_t	 in[64];


}

/**
 * \return A new autoreleased MD5 Hash
 */
+ MD5Hash;
@end







>
|
>
>







21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/**
 * \brief A class which provides functions to create an MD5 hash.
 */
@interface OFMD5Hash: OFHash
{
	uint32_t buf[4];
	uint32_t bits[2];
	union {
		uint8_t	u8[64];
		uint32_t u32[16];
	} in;
}

/**
 * \return A new autoreleased MD5 Hash
 */
+ MD5Hash;
@end