Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
/* $Id: cm_crypt.h 5 2024-09-25 00:19:35Z nishi $ */
#ifndef __CM_CRYPT_H__
#define __CM_CRYPT_H__
enum CRYPT_TYPES {
C_START = -1,
C_DES,
C_MD5,
C_BLOWFISH,
C_UNK1,
C_UNK2,
C_SHA256,
C_SHA512,
C_END
};
int cm_crypt_init(void);
char* cm_crypt(const char* string);
#endif