Files
bitchx/include/encrypt.h
2013-01-01 03:00:55 -08:00

27 lines
575 B
C
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* crypt.h: header for crypt.c
*
* Written By Michael Sandrof
*
* Copyright(c) 1990
*
* See the COPYRIGHT file, or do a HELP IRCII COPYRIGHT
*
* @(#)$Id: encrypt.h 3 2008-02-25 09:49:14Z keaston $
*/
#ifndef __CRYPT_H_
#define __CRYPT_H_
char *crypt_msg (char *, char *);
char *decrypt_msg (char *, char *);
void encrypt_cmd (char *, char *, char *, char *);
char *is_crypted (char *);
void BX_my_decrypt (char *, int, char *);
void BX_my_encrypt (char *, int, char *);
#define CRYPT_HEADER ""
#define CRYPT_HEADER_LEN 5
#endif /* __crypt_h_ */