-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathencryption.cpp
More file actions
189 lines (180 loc) · 5.31 KB
/
encryption.cpp
File metadata and controls
189 lines (180 loc) · 5.31 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
#include <windows.h>
#include <stdio.h>
#include "encryption.h"
#include "console.h"
// I realize that these functions could be better implemented with function pointers.
// At the time I wrote this library, I did not know how to use function pointers, and this works just fine.
// Initializes the stream cipher context using the given key and encryption type.
void CRYPT_CreateKeys(CRYPT_SETUP* cs,void* key,BYTE type)
{
ZeroMemory(cs,sizeof(CRYPT_SETUP));
cs->type = type;
switch (cs->type)
{
case CRYPT_PC:
CRYPT_PC_CreateKeys(cs,*(DWORD*)key);
break;
case CRYPT_GAMECUBE:
CRYPT_GC_CreateKeys(cs,*(DWORD*)key);
break;
case CRYPT_BLUEBURST:
CRYPT_BB_CreateKeys(cs,key);
break;
//case CRYPT_SCHTHACK:
//CRYPT_SS_CreateKeys(cs,key);
//break;
//case CRYPT_FUZZIQER:
//CRYPT_FS_CreateKeys(cs,*(DWORD*)key);
//break;
}
}
// Encrypts or decrypts data using the givent stream cipher context.
void CRYPT_CryptData(CRYPT_SETUP* cs,void* data,DWORD size,bool encrypting)
{
switch (cs->type)
{
case CRYPT_PC:
CRYPT_PC_CryptData(cs,data,size);
break;
case CRYPT_GAMECUBE:
CRYPT_GC_CryptData(cs,data,size);
break;
case CRYPT_BLUEBURST:
if (encrypting) CRYPT_BB_Encrypt(cs,data,size);
else CRYPT_BB_Decrypt(cs,data,size);
break;
//case CRYPT_SCHTHACK:
//if (encrypting) CRYPT_SS_Encrypt(cs,data,size);
//else CRYPT_SS_Decrypt(cs,data,size);
//break;
//case CRYPT_FUZZIQER:
//CRYPT_FS_CryptData(cs,data,size);
//break;
}
}
// Prints the key stream. This should never be necessary (hence the 'debug')
void CRYPT_DEBUG_PrintKeys(CRYPT_SETUP* cs,wchar_t* title)
{
switch (cs->type)
{
case CRYPT_PC:
CRYPT_PC_DEBUG_PrintKeys(cs,title);
break;
case CRYPT_GAMECUBE:
CRYPT_GC_DEBUG_PrintKeys(cs,title);
break;
case CRYPT_BLUEBURST:
CRYPT_BB_DEBUG_PrintKeys(cs,title);
break;
//case CRYPT_SCHTHACK:
//CRYPT_SS_DEBUG_PrintKeys(cs,title);
//break;
//case CRYPT_FUZZIQER:
//CRYPT_FS_DEBUG_PrintKeys(cs,title);
//break;
}
}
// Prints a block of data to the console in a nice hex/ascii view.
// This really should be in console.cpp but I never got around to moving/renaming it.
void CRYPT_PrintData(void* ds,DWORD data_size)
{
BYTE* data_source = (BYTE*)ds;
DWORD x,y,off;
char buffer[17];
buffer[16] = 0;
off = 0;
printf("00000000 | ");
for (x = 0; x < data_size; x++)
{
if (off == 16)
{
for (y = 0; y < 16; y++)
{
if (data_source[x + y - 16] < 0x20) buffer[y] = ' ';
else buffer[y] = data_source[x + y - 16];
}
printf("| %s\n%08lX | ",buffer,x);
off = 0;
}
printf("%02X ",data_source[x]);
off++;
}
buffer[off] = 0;
for (y = 0; y < off; y++) buffer[y] = data_source[x - off + y];
for (y = 0; y < off; y++) if (buffer[y] < 0x20) buffer[y] = ' ';
for (y = 0; y < 16 - off; y++) printf(" ");
printf("| %s\n\n",buffer);
}
// Prints a block of data to a file in a nice hex/ascii view.
void CRYPT_PrintData(FILE* f,void* ds,DWORD data_size)
{
BYTE* data_source = (BYTE*)ds;
DWORD x,y,off;
wchar_t buffer[17];
buffer[16] = 0;
off = 0;
fwprintf(f,L"00000000 | ");
for (x = 0; x < data_size; x++)
{
if (off == 16)
{
for (y = 0; y < 16; y++)
{
if (data_source[x + y - 16] < 0x20) buffer[y] = L' ';
else buffer[y] = data_source[x + y - 16];
}
fwprintf(f,L"| %s\n%08X | ",buffer,x);
off = 0;
}
fwprintf(f,L"%02X ",data_source[x]);
off++;
}
buffer[off] = 0;
for (y = 0; y < off; y++) buffer[y] = data_source[x - off + y];
for (y = 0; y < off; y++) if (buffer[y] < 0x20) buffer[y] = L' ';
for (y = 0; y < 16 - off; y++) fwprintf(f,L" ");
fwprintf(f,L"| %s\n\n",buffer);
}
// Prints a block of data to a file and the console in a nice hex/ascii view.
void CRYPT_SplitPrintData(FILE* f,void* ds,DWORD data_size)
{
if (!f)
{
CRYPT_PrintData(ds,data_size);
return;
}
BYTE* data_source = (BYTE*)ds;
DWORD x,y,off;
wchar_t buffer[17];
buffer[16] = 0;
off = 0;
wprintf(L"00000000 | ");
fwprintf(f,L"00000000 | ");
for (x = 0; x < data_size; x++)
{
if (off == 16)
{
for (y = 0; y < 16; y++)
{
if (data_source[x + y - 16] < 0x20) buffer[y] = L' ';
else buffer[y] = data_source[x + y - 16];
}
wprintf(L"| %s\n%08X | ",buffer,x);
fwprintf(f,L"| %s\n%08X | ",buffer,x);
off = 0;
}
wprintf(L"%02X ",data_source[x]);
fwprintf(f,L"%02X ",data_source[x]);
off++;
}
buffer[off] = 0;
for (y = 0; y < off; y++) buffer[y] = data_source[x - off + y];
for (y = 0; y < off; y++) if (buffer[y] < 0x20) buffer[y] = L' ';
for (y = 0; y < 16 - off; y++)
{
wprintf(L" ");
fwprintf(f,L" ");
}
wprintf(L"| %s\n\n",buffer);
fwprintf(f,L"| %s\n\n",buffer);
}