view rvinterf/etmsync/cl_des.h @ 407:19e5a3e2f9c0

fcup-settime: moved time() retrieval a little closer to the output A fundamental problem with all simple time transfer tools is that there is always some delay between the time retrieval on the source system and that transmitted time being set on the destination, and the resulting time on the destination system is off by that delay amount. This delay cannot be fully eliminated when working in a simple environment like ours, but we should make our best effort to minimize it. In the present case, moving the atinterf_init() call before the time() retrieval should make a teensy-tiny improvement.
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 11 Aug 2018 21:52:17 +0000
parents 3d148edb87c2
children
line wrap: on
line source

/*
 * This DES implementation is used for the purpose of decrypting
 * Pirelli's factory IMEI record; it has been lifted out of TI's
 * reference GSM firmware source.
 */

#ifndef CL_DES_H
#define CL_DES_H

/**********************************************************************************/

#define CL_DES_BUFFER_SIZE   8
#define CL_DES_KEY_SIZE      8
#define CL_DES_ENCRYPTION    1
#define CL_DES_DECRYPTION    2

/*
+------------------------------------------------------------------------------
| Function    : cl_des
+------------------------------------------------------------------------------
| Description : The function performs DES encrypting or decrypting
|
| Parameters  : inMsgPtr   : pointer to input message M. The length of message
|                            has to be min. 8 bytes e.g. M = 0123456789abcdef
|               desKeyPtr  : pointer to DES key. Length has to be 8 bytes
|                outMsgPtr : output encrypted/decrypted message. The length is 8 b.
|                     code : CL_DES_ENCRYPTION, CL_DES_DECRYPTION
+------------------------------------------------------------------------------
*/
extern void cl_des(unsigned char *inMsgPtr, unsigned char *desKeyPtr,
		   unsigned char *outMsgPtr, unsigned char code);


/**********************************************************************************/

#endif /* CL_DES_H */