-
Notifications
You must be signed in to change notification settings - Fork 2
/
encrypt_5_v2.cpp
77 lines (59 loc) · 1.22 KB
/
encrypt_5_v2.cpp
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
//
// Калькулятор nlock-кодов для модемов Huawei с новым алгоритмом v2
//
// Автор - forth32
// 2014 год
//
// Ветка для вычисления кодов с индексом 3
//
#include "encrypt.h"
void GetEncrySStr(char* buf, char* phash, int off) {
int i;
char c;
for(i=0;i<2;i++) {
c=buf[off+i*8];
phash[i]=c;
}
}
int rexor(char* phash) {
char c;
int i,len;
len=strlen(phash);
c=phash[0];
if (len == 1) return (c^'Z');
for(i=1;i<len;i++) {
c^=phash[i];
}
return (unsigned int)c;
}
//====================================================================================
void encrypt_5_v2(char* imei,char* resbuf) {
int r0,r1,r2,r3,r4,r5,r6,r7,r8,r9,r10,r12,lr;
int i;
char PW_table[]="5739146280098765432112345678905\000";
char buf[140];
int hash[4];
char* phash=(char*)hash;
memset(buf,0,140);
strcpy(buf,imei);
buf[15]='Z';
for(i=0;i<8;i++) {
memset(hash,0,16);
GetEncrySStr(buf,phash,i);
r0=rexor(phash)&0xff;
resbuf[i]=r0;
}
for(i=0;i<8;i++) {
r3=resbuf[i]&0xff;
r2=r3&0xf;
r1=PW_table[(r3>>4)+r2];
resbuf[i]=r1;
}
if (resbuf[0]=='0') {
for(i=1;i<8;i++){
if (resbuf[i] != '0') break;
}
resbuf[0]=i+'0';
}
resbuf[8]=0;
}