Differences From Artifact [bc46710b04]:
- File src/OFSHA512Hash.m — part of check-in [cfd374b906] at 2015-01-03 20:57:18 on branch trunk — Update copyright (user: js, size: 1003) [annotate] [blame] [check-ins using]
To Artifact [e761d41b46]:
- File
src/OFSHA512Hash.m
— part of check-in
[7c27db9fe0]
at
2015-02-01 00:47:18
on branch trunk
— Add -[OFHash reset]
This is useful to calculate many hashes without allocating new objects. (user: js, size: 1053) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
return 64;
}
- init
{
self = [super init];
_state[0] = 0x6A09E667F3BCC908;
_state[1] = 0xBB67AE8584CAA73B;
_state[2] = 0x3C6EF372FE94F82B;
_state[3] = 0xA54FF53A5F1D36F1;
_state[4] = 0x510E527FADE682D1;
_state[5] = 0x9B05688C2B3E6C1F;
_state[6] = 0x1F83D9ABFB41BD6B;
_state[7] = 0x5BE0CD19137E2179;
| > > > > > > > | < < | 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
return 64;
}
- init
{
self = [super init];
[self OF_resetState];
return self;
}
- (void)OF_resetState
{
_state[0] = 0x6A09E667F3BCC908;
_state[1] = 0xBB67AE8584CAA73B;
_state[2] = 0x3C6EF372FE94F82B;
_state[3] = 0xA54FF53A5F1D36F1;
_state[4] = 0x510E527FADE682D1;
_state[5] = 0x9B05688C2B3E6C1F;
_state[6] = 0x1F83D9ABFB41BD6B;
_state[7] = 0x5BE0CD19137E2179;
}
@end
|