glquake/source/crypter.h

13 lines
154 B
C
Raw Permalink Normal View History

2024-09-07 01:07:31 +00:00
/*
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