ObjFW  Diff

Differences From Artifact [1c2aa1b471]:

To Artifact [6aec6298e0]:


50
51
52
53
54
55
56
57
58
59
60




61
62
63
64
65
66
67
50
51
52
53
54
55
56




57
58
59
60
61
62
63
64
65
66
67







-
-
-
-
+
+
+
+







@end

/**
 * The OFSHA1Hash class provides functions to create an SHA1 hash.
 */
@interface OFSHA1Hash: OFObject
{
	uint32_t    state[5];
	uint64_t    count;
	char	    buffer[64];
	char	    digest[SHA1_DIGEST_SIZE];
	uint32_t state[5];
	uint64_t count;
	char	 buffer[64];
	char	 digest[SHA1_DIGEST_SIZE];

	BOOL	 calculated;
}

/**
 * \return A new autoreleased SHA1 Hash
 */