mirror of
https://github.com/nzp-team/dquakeplus.git
synced 2024-11-22 20:02:37 +00:00
13 lines
154 B
C
13 lines
154 B
C
|
/*
|
||
|
RSA DATA Decrypt
|
||
|
*/
|
||
|
|
||
|
#ifndef RSA_H
|
||
|
#define RSA_H
|
||
|
|
||
|
char *strencrypt(char *s, int key, int len);
|
||
|
char *strdecrypt(char *s, int key, int len);
|
||
|
|
||
|
#endif
|
||
|
|