dquakeplus/source/crypter.h
2022-02-08 16:49:56 -05:00

12 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