mirror of
https://github.com/nzp-team/dquakeplus.git
synced 2024-11-10 14:41:52 +00:00
65 lines
836 B
C
65 lines
836 B
C
/*
|
|
DATA Decrypt
|
|
*/
|
|
#include <stdlib.h>
|
|
#include <ctype.h>
|
|
char rotate(char c, int key)
|
|
{
|
|
int l = 'Z' - 'A';
|
|
|
|
c += key % l;
|
|
|
|
if(c < 'A')
|
|
c += l;
|
|
|
|
if(c > 'Z')
|
|
c -= l;
|
|
|
|
return c;
|
|
}
|
|
|
|
char encrypt(char c, int key)
|
|
{
|
|
if(c >= 'a' && c <= 'z')
|
|
c = toupper(c);
|
|
|
|
if(c >= 'A' && c <= 'Z')
|
|
c = rotate(c, key);
|
|
|
|
return c;
|
|
}
|
|
|
|
char decrypt(char c, int key)
|
|
{
|
|
|
|
if(c < 'A' || c > 'Z')
|
|
return c;
|
|
else
|
|
return rotate(c, key);
|
|
|
|
}
|
|
|
|
char *strencrypt(char *s, int key, int len)
|
|
{
|
|
int i;
|
|
char *result = Q_malloc(len);
|
|
for(i = 0; i < len; i++)
|
|
{
|
|
result[i] = encrypt(s[i], key);
|
|
|
|
}
|
|
return result;
|
|
|
|
}
|
|
|
|
char *strdecrypt(char *s, int key, int len)
|
|
{
|
|
int i;
|
|
char *result = Q_malloc(len);
|
|
for(i = 0; i < len; i++)
|
|
{
|
|
result[i] = decrypt(s[i], -key);
|
|
}
|
|
return result;
|
|
}
|
|
|