d3des.h
上传用户:maryhy001
上传日期:2007-05-02
资源大小:2317k
文件大小:2k
源码类别:

网格计算

开发平台:

Visual C++

  1. /*
  2.  * This is D3DES (V5.09) by Richard Outerbridge with the double and
  3.  * triple-length support removed for use in VNC.
  4.  *
  5.  * These changes are 
  6.  * Copyright (C) 1999 AT&T Laboratories Cambridge. All Rights Reserved.
  7.  *
  8.  * This software is distributed in the hope that it will be useful,
  9.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  11.  */
  12. /* d3des.h -
  13.  *
  14.  *      Headers and defines for d3des.c
  15.  *      Graven Imagery, 1992.
  16.  *
  17.  * Copyright (c) 1988,1989,1990,1991,1992 by Richard Outerbridge
  18.  *      (GEnie : OUTER; CIS : [71755,204])
  19.  */
  20. #pragma warning(disable:4244)
  21. #define EN0     0       /* MODE == encrypt */
  22. #define DE1     1       /* MODE == decrypt */
  23. extern void deskey(unsigned char *, int);
  24. /*                    hexkey[8]     MODE
  25.  * Sets the internal key register according to the hexadecimal
  26.  * key contained in the 8 bytes of hexkey, according to the DES,
  27.  * for encryption or decryption according to MODE.
  28.  */
  29. extern void usekey(unsigned long *);
  30. /*                  cookedkey[32]
  31.  * Loads the internal key register with the data in cookedkey.
  32.  */
  33. extern void cpkey(unsigned long *);
  34. /*                 cookedkey[32]
  35.  * Copies the contents of the internal key register into the storage
  36.  * located at &cookedkey[0].
  37.  */
  38. extern void des(unsigned char *, unsigned char *);
  39. /*                  from[8]           to[8]
  40.  * Encrypts/Decrypts (according to the key currently loaded in the
  41.  * internal key register) one block of eight bytes at address 'from'
  42.  * into the block at address 'to'.  They can be the same.
  43.  */
  44. /* d3des.h V5.09 rwo 9208.04 15:06 Graven Imagery
  45.  ********************************************************************/