113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
-
+
|
buf[2] += c;
buf[3] += d;
}
@implementation OFMD5Hash
+ md5Hash
{
return [[[self alloc] init] autorelease];
return [[[OFMD5Hash alloc] init] autorelease];
}
- init
{
if ((self = [super init])) {
buf[0] = 0x67452301;
buf[1] = 0xEFCDAB89;
|
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
|
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
|
-
+
|
memcpy(&buffer[j], &buf[i], size - i);
}
@implementation OFSHA1Hash
+ sha1Hash
{
return [[[self alloc] init] autorelease];
return [[[OFSHA1Hash alloc] init] autorelease];
}
- init
{
if ((self = [super init])) {
count = 0;
state[0] = 0x67452301;
|