-
Notifications
You must be signed in to change notification settings - Fork 25
/
gost3411-2012-core.h
55 lines (44 loc) · 1.27 KB
/
gost3411-2012-core.h
1
2
3
4
5
6
7
8
9
10
11
12
13
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/*
* Copyright (c) 2013, Alexey Degtyarev <alexey@renatasystems.org>.
* All rights reserved.
*
* $Id$
*/
#include <string.h>
#include "gost3411-2012-config.h"
#if defined _MSC_VER
#define ALIGN(x) __declspec(align(x))
#else
#define ALIGN(x) __attribute__ ((__aligned__(x)))
#endif
#if defined __GOST3411_HAS_SSE41__
#include "gost3411-2012-sse41.h"
#elif defined __GOST3411_HAS_SSE2__
#include "gost3411-2012-sse2.h"
#elif defined __GOST3411_HAS_MMX__
#include "gost3411-2012-mmx.h"
#else
#include "gost3411-2012-ref.h"
#endif
ALIGN(16) union uint512_u
{
unsigned long long QWORD[8];
} uint512_u;
#include "gost3411-2012-const.h"
#include "gost3411-2012-precalc.h"
ALIGN(16) typedef struct GOST34112012Context
{
ALIGN(16) unsigned char buffer[64];
ALIGN(16) union uint512_u hash;
ALIGN(16) union uint512_u h;
ALIGN(16) union uint512_u N;
ALIGN(16) union uint512_u Sigma;
size_t bufsize;
unsigned int digest_size;
} GOST34112012Context;
void GOST34112012Init(GOST34112012Context *CTX,
const unsigned int digest_size);
void GOST34112012Update(GOST34112012Context *CTX, const unsigned char *data,
size_t len);
void GOST34112012Final(GOST34112012Context *CTX, unsigned char *digest);
void GOST34112012Cleanup(GOST34112012Context *CTX);