14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
* LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this
* file.
*/
#include "config.h"
#import "OFSHA256Hash.h"
@implementation OFSHA256Hash
+ (size_t)digestSize
{
return 32;
}
- (void)of_resetState
{
_iVars->state[0] = 0x6A09E667;
_iVars->state[1] = 0xBB67AE85;
_iVars->state[2] = 0x3C6EF372;
|
>
>
|
>
>
>
>
>
|
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
* LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this
* file.
*/
#include "config.h"
#import "OFSHA256Hash.h"
#define DIGEST_SIZE 32
@implementation OFSHA256Hash
+ (size_t)digestSize
{
return DIGEST_SIZE;
}
- (size_t)digestSize
{
return DIGEST_SIZE;
}
- (void)of_resetState
{
_iVars->state[0] = 0x6A09E667;
_iVars->state[1] = 0xBB67AE85;
_iVars->state[2] = 0x3C6EF372;
|