Differences From Artifact [4ade11c8e1]:
- File src/OFHashes.m — part of check-in [d28c998082] at 2010-04-17 16:01:18 on branch trunk — Add class OFHash as a superclass for OFMD5Hash and OFSHA1Hash. (user: js, size: 12744) [annotate] [blame] [check-ins using]
To Artifact [1aa4d93617]:
- File src/OFHashes.m — part of check-in [f3e7291fad] at 2010-04-17 23:04:50 on branch trunk — Add properties to interfaces. Only used if supported by the compiler. (user: js, size: 12788) [annotate] [blame] [check-ins using]
| ︙ | |||
29 30 31 32 33 34 35 36 37 38 39 40 41 42 | 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | + + + + + |
}
- (uint8_t*)digest
{
@throw [OFNotImplementedException newWithClass: isa
selector: _cmd];
}
- (BOOL)calculated
{
return calculated;
}
@end
/*
* MD5
*/
/* The four MD5 core functions - F1 is optimized somewhat */
|
| ︙ |