versadac  1
versadac - Scalable Recorder Firmware
SimpleEncryption.h
1 #ifndef SIMPLE_ENCRYPTION
2 #define SIMPLE_ENCRYPTION
3 
4 /*******************************************************************************
5 FILE : SimpleEncryption.h
6 VERSION : $Id: SimpleEncryption.h 4987 2006-10-11 14:49:51Z martinto $
7 SYSTEM : Gnu C C++ for PowerPC under vxWorks & Microsoft Visual C
8 DESCRIPTION : SimpleEncryption algorithm.
9  See eurotherm.recorder.utils.SimpleEncryption.
10 *******************************************************************************/
11 #include "stdtypes.h"
12 
13 #ifdef __cplusplus
14 extern "C" {
15 #endif
16 
17 unicode_p SimpleEncryptionDecrypt(unicode_p z_data);
18 unicode_p SimpleEncryptionEncrypt(unicode_p z_data, unicode_p z_encBuf);
19 
20 #ifdef __cplusplus
21 }
22 #endif
23 
24 #endif