ObjFW  Diff

Differences From Artifact [35f25635b9]:

To Artifact [1bef7d37d4]:


26
27
28
29
30
31
32
33

34
35
36
37
38
39
40
41
42

43
44

45
46
47
48
49
50
51
52
53
54
55
56
57

58
59
60
61
62
26
27
28
29
30
31
32

33

34
35
36
37
38
39
40

41


42

43
44
45
46
47
48
49
50
51
52
53

54

55
56
57
58







-
+
-







-
+
-
-
+
-











-
+
-




	"\xE6\x08\x8B";

@implementation TestsAppDelegate (OFRIPEMD160HashTests)
- (void)RIPEMD160HashTests
{
	void *pool = objc_autoreleasePoolPush();
	OFRIPEMD160Hash *rmd160, *copy;
	OFFile *f = [OFFile fileWithPath: @"testfile.bin"
	OFFile *f = [OFFile fileWithPath: @"testfile.bin" mode: @"r"];
				    mode: @"r"];

	TEST(@"+[cryptoHashWithAllowsSwappableMemory:]",
	    (rmd160 = [OFRIPEMD160Hash
	    cryptoHashWithAllowsSwappableMemory: true]))

	while (!f.atEndOfStream) {
		char buf[64];
		size_t len = [f readIntoBuffer: buf
		size_t len = [f readIntoBuffer: buf length: 64];
					length: 64];
		[rmd160 updateWithBuffer: buf
		[rmd160 updateWithBuffer: buf length: len];
				  length: len];
	}
	[f close];

	TEST(@"-[copy]", (copy = [[rmd160 copy] autorelease]))

	TEST(@"-[digest]",
	    memcmp(rmd160.digest, testfile_rmd160, 20) == 0 &&
	    memcmp(copy.digest, testfile_rmd160, 20) == 0)

	EXPECT_EXCEPTION(@"Detect invalid call of "
	    @"-[updateWithBuffer:length]", OFHashAlreadyCalculatedException,
	    [rmd160 updateWithBuffer: ""
	    [rmd160 updateWithBuffer: "" length: 1])
			      length: 1])

	objc_autoreleasePoolPop(pool);
}
@end