Differences From Artifact [0a69e7a200]:
- File
src/OFSHA512Hash.m
— part of check-in
[44f45c2e35]
at
2017-01-09 17:36:36
on branch trunk
— Update copyright
Forgot to add 2017, even though I already did quite some changes in
2017. (user: js, size: 990) [annotate] [blame] [check-ins using]
To Artifact [58e7af6661]:
- File
src/OFSHA512Hash.m
— part of check-in
[6b77a5dd8b]
at
2017-05-21 21:28:57
on branch trunk
— Prefix private methods with of_ instead of OF_
This matches Apple's style. (user: js, size: 990) [annotate] [blame] [check-ins using]
| ︙ | ︙ | |||
20 21 22 23 24 25 26 |
@implementation OFSHA512Hash
+ (size_t)digestSize
{
return 64;
}
| | | 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 |
@implementation OFSHA512Hash
+ (size_t)digestSize
{
return 64;
}
- (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
|