MagicWin 98 1.30f 注册机:
#include
#include
#include
#include
#define BUF_LEN 30
#define HEAD_SIZE 3
/* 前三个字符不作处理,Serial Number的长度要大于这个值 */
#define MOV_SIZE 4
/* 对Serial Number处理时,间隔4个字节相互替换 */
void int2str(int n, char *pt);
/* 好久没用TC20了,所以不知道怎么将Int型的值转换成字符串 */
main () {
char S_N[BUF_LEN]; /* Serial Number 存放的数组 */
char User_Name[BUF_LEN]; /* 用户名存放的数组 */
char *pstr, ch;
unsigned int sum = 0;
pstr = S_N;
printf("Please Enter your Serials Number: ");
scanf("%s",S_N);
if (strlen(S_N) > HEAD_SIZE) {
printf("\nPlease Enter your Name: ");
scanf("%s",User_Name);
if ((sum = strlen(User_Name)) > 0) {
pstr = User_Name; /* 将用户名字符的ASCII */
sum += pstr; /* 值累加,并加上用户名 */
while (*pstr++ != '\0') /* 长度。 */
sum += *pstr;
int2str(sum, User_Name); /* 求出这个Int对应的字符串 */
pstr = S_N + HEAD_SIZE;
while (strlen(pstr) > MOV_SIZE) { /* 每隔4个字符xchg */
ch = *pstr;
*pstr = *(pstr + MOV_SIZE);
*(pstr + MOV_SIZE) = ch;
pstr++;
}
while (*pstr != '\0' && *(pstr + 1) != '\0') {
ch = *pstr;
*pstr = *(pstr+1);
/* 将最后不大于4长度的字符循环左移一位 */
*(pstr+1) = ch;
pstr++;
}
pstr = S_N + HEAD_SIZE;
sum = HEAD_SIZE;
while (*pstr != '\0') {/* 从第四个字符起将转换了得 */
*pstr += sum; /* 字符串依次加上0x10 + 在 */
*pstr += 0x10; /* 字符串中该字符的位置。注:*/
pstr++; /* 第一个字符的位置为0,以此 */
sum++; /* 类推 */
}
strcat(S_N, User_Name); /* 将User_Name字符串(转变后的) */
/* 接到S_N字符串的后面,此时的 */
/* S_N字符串就是正确的Code了 */
printf ("\nThe MagicWin 98 1.30f software Code is: %s \n",S_N);
}
else {
printf ("Name can't be NULL.");
}
}
else {
printf ("Serials Number Must be %d char or more.\n",HEAD_SIZE+1);
}
}
void int2str(int n, char *pt) {
int k = 0;
ldiv_t lx;
lx.quot = n;
while (lx.quot != 0) {
lx = ldiv(lx.quot, 10L);
*(pt+k) = lx.rem + 0x30;
k++;
}
*(pt+k) = '\0';
strrev(pt);
}
相关视频
相关阅读 Windows错误代码大全 Windows错误代码查询激活windows有什么用Mac QQ和Windows QQ聊天记录怎么合并 Mac QQ和Windows QQ聊天记录Windows 10自动更新怎么关闭 如何关闭Windows 10自动更新windows 10 rs4快速预览版17017下载错误问题Win10秋季创意者更新16291更新了什么 win10 16291更新内容windows10秋季创意者更新时间 windows10秋季创意者更新内容kb3150513补丁更新了什么 Windows 10补丁kb3150513是什么
热门文章 去除winrar注册框方法
最新文章
比特币病毒怎么破解 比去除winrar注册框方法
华为无线路由器HG522-C破解教程(附超级密码JEB格式文件京东电子书下载和阅读限制破解教UltraISO注册码全集(最新)通过Access破解MSSQL获得数据
人气排行 华为无线路由器HG522-C破解教程(附超级密码JEB格式文件京东电子书下载和阅读限制破解教UltraISO注册码全集(最新)qq相册密码破解方法去除winrar注册框方法(适应任何版本)怎么用手机破解收费游戏华为无线猫HG522破解如何给软件脱壳基础教程
查看所有0条评论>>