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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
/*************************************************
* GOST Source File *
* (C) 1999-2007 The Botan Project *
*************************************************/
#include <botan/gost.h>
#include <botan/bit_ops.h>
namespace Botan {
/*************************************************
* GOST Encryption *
*************************************************/
void GOST::enc(const byte in[], byte out[]) const
{
u32bit N1 = make_u32bit(in[3], in[2], in[1], in[0]),
N2 = make_u32bit(in[7], in[6], in[5], in[4]);
for(u32bit j = 0; j != 32; j += 2)
{
u32bit T0;
T0 = N1 + EK[j];
N2 ^= SBOX1[get_byte(0, T0)] | SBOX2[get_byte(1, T0)] |
SBOX3[get_byte(2, T0)] | SBOX4[get_byte(3, T0)];
T0 = N2 + EK[j+1];
N1 ^= SBOX1[get_byte(0, T0)] | SBOX2[get_byte(1, T0)] |
SBOX3[get_byte(2, T0)] | SBOX4[get_byte(3, T0)];
}
out[0] = get_byte(3, N2); out[1] = get_byte(2, N2);
out[2] = get_byte(1, N2); out[3] = get_byte(0, N2);
out[4] = get_byte(3, N1); out[5] = get_byte(2, N1);
out[6] = get_byte(1, N1); out[7] = get_byte(0, N1);
}
/*************************************************
* GOST Decryption *
*************************************************/
void GOST::dec(const byte in[], byte out[]) const
{
u32bit N1 = make_u32bit(in[3], in[2], in[1], in[0]),
N2 = make_u32bit(in[7], in[6], in[5], in[4]);
for(u32bit j = 0; j != 32; j += 2)
{
u32bit T0;
T0 = N1 + EK[31-j];
N2 ^= SBOX1[get_byte(0, T0)] | SBOX2[get_byte(1, T0)] |
SBOX3[get_byte(2, T0)] | SBOX4[get_byte(3, T0)];
T0 = N2 + EK[30-j];
N1 ^= SBOX1[get_byte(0, T0)] | SBOX2[get_byte(1, T0)] |
SBOX3[get_byte(2, T0)] | SBOX4[get_byte(3, T0)];
}
out[0] = get_byte(3, N2); out[1] = get_byte(2, N2);
out[2] = get_byte(1, N2); out[3] = get_byte(0, N2);
out[4] = get_byte(3, N1); out[5] = get_byte(2, N1);
out[6] = get_byte(1, N1); out[7] = get_byte(0, N1);
}
/*************************************************
* GOST Key Schedule *
*************************************************/
void GOST::key(const byte key[], u32bit)
{
for(u32bit j = 0; j != 8; ++j)
{
u32bit K = make_u32bit(key[4*j+3], key[4*j+2], key[4*j+1], key[4*j]);
EK[j] = EK[j+8] = EK[j+16] = K;
}
for(u32bit j = 24; j != 32; ++j)
EK[j] = EK[7-(j-24)];
}
}
|