crypt.h
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:5k
源码类别:

midi

开发平台:

Unix_Linux

  1. /* crypt.h -- base code for crypt/uncrypt ZIPfile
  2.    Version 1.01e, February 12th, 2005
  3.    Copyright (C) 1998-2005 Gilles Vollant
  4.    This code is a modified version of crypting code in Infozip distribution
  5.    The encryption/decryption parts of this source code (as opposed to the
  6.    non-echoing password parts) were originally written in Europe.  The
  7.    whole source package can be freely distributed, including from the USA.
  8.    (Prior to January 2000, re-export from the US was a violation of US law.)
  9.    This encryption code is a direct transcription of the algorithm from
  10.    Roger Schlafly, described by Phil Katz in the file appnote.txt.  This
  11.    file (appnote.txt) is distributed with the PKZIP program (even in the
  12.    version without encryption capabilities).
  13.    If you don't need crypting in your application, just define symbols
  14.    NOCRYPT and NOUNCRYPT.
  15.    This code support the "Traditional PKWARE Encryption".
  16.    The new AES encryption added on Zip format by Winzip (see the page
  17.    http://www.winzip.com/aes_info.htm ) and PKWare PKZip 5.x Strong
  18.    Encryption is not supported.
  19. */
  20. #define CRC32(c, b) ((*(pcrc_32_tab+(((int)(c) ^ (b)) & 0xff))) ^ ((c) >> 8))
  21. /***********************************************************************
  22.  * Return the next byte in the pseudo-random sequence
  23.  */
  24. static int decrypt_byte(unsigned long* pkeys, const unsigned long* pcrc_32_tab)
  25. {
  26.     (void) pcrc_32_tab;
  27.     unsigned temp;  /* POTENTIAL BUG:  temp*(temp^1) may overflow in an
  28.                      * unpredictable manner on 16-bit systems; not a problem
  29.                      * with any known compiler so far, though */
  30.     temp = ((unsigned)(*(pkeys+2)) & 0xffff) | 2;
  31.     return (int)(((temp * (temp ^ 1)) >> 8) & 0xff);
  32. }
  33. /***********************************************************************
  34.  * Update the encryption keys with the next byte of plain text
  35.  */
  36. static int update_keys(unsigned long* pkeys,const unsigned long* pcrc_32_tab,int c)
  37. {
  38.     (*(pkeys+0)) = CRC32((*(pkeys+0)), c);
  39.     (*(pkeys+1)) += (*(pkeys+0)) & 0xff;
  40.     (*(pkeys+1)) = (*(pkeys+1)) * 134775813L + 1;
  41.     {
  42.       register int keyshift = (int)((*(pkeys+1)) >> 24);
  43.       (*(pkeys+2)) = CRC32((*(pkeys+2)), keyshift);
  44.     }
  45.     return c;
  46. }
  47. /***********************************************************************
  48.  * Initialize the encryption keys and the random header according to
  49.  * the given password.
  50.  */
  51. static void init_keys(const char* passwd,unsigned long* pkeys,const unsigned long* pcrc_32_tab)
  52. {
  53.     *(pkeys+0) = 305419896L;
  54.     *(pkeys+1) = 591751049L;
  55.     *(pkeys+2) = 878082192L;
  56.     while (*passwd != '') {
  57.         update_keys(pkeys,pcrc_32_tab,(int)*passwd);
  58.         passwd++;
  59.     }
  60. }
  61. #define zdecode(pkeys,pcrc_32_tab,c) 
  62.     (update_keys(pkeys,pcrc_32_tab,c ^= decrypt_byte(pkeys,pcrc_32_tab)))
  63. #define zencode(pkeys,pcrc_32_tab,c,t) 
  64.     (t=decrypt_byte(pkeys,pcrc_32_tab), update_keys(pkeys,pcrc_32_tab,c), t^(c))
  65. #ifdef INCLUDECRYPTINGCODE_IFCRYPTALLOWED
  66. #define RAND_HEAD_LEN  12
  67.    /* "last resort" source for second part of crypt seed pattern */
  68. #  ifndef ZCR_SEED2
  69. #    define ZCR_SEED2 3141592654UL     /* use PI as default pattern */
  70. #  endif
  71. static int crypthead(passwd, buf, bufSize, pkeys, pcrc_32_tab, crcForCrypting)
  72.     const char *passwd;         /* password string */
  73.     unsigned char *buf;         /* where to write header */
  74.     int bufSize;
  75.     unsigned long* pkeys;
  76.     const unsigned long* pcrc_32_tab;
  77.     unsigned long crcForCrypting;
  78. {
  79.     int n;                       /* index in random header */
  80.     int t;                       /* temporary */
  81.     int c;                       /* random byte */
  82.     unsigned char header[RAND_HEAD_LEN-2]; /* random header */
  83.     static unsigned calls = 0;   /* ensure different random header each time */
  84.     if (bufSize<RAND_HEAD_LEN)
  85.       return 0;
  86.     /* First generate RAND_HEAD_LEN-2 random bytes. We encrypt the
  87.      * output of rand() to get less predictability, since rand() is
  88.      * often poorly implemented.
  89.      */
  90.     if (++calls == 1)
  91.     {
  92.         srand((unsigned)(time(NULL) ^ ZCR_SEED2));
  93.     }
  94.     init_keys(passwd, pkeys, pcrc_32_tab);
  95.     for (n = 0; n < RAND_HEAD_LEN-2; n++)
  96.     {
  97.         c = (rand() >> 7) & 0xff;
  98.         header[n] = (unsigned char)zencode(pkeys, pcrc_32_tab, c, t);
  99.     }
  100.     /* Encrypt random header (last two bytes is high word of crc) */
  101.     init_keys(passwd, pkeys, pcrc_32_tab);
  102.     for (n = 0; n < RAND_HEAD_LEN-2; n++)
  103.     {
  104.         buf[n] = (unsigned char)zencode(pkeys, pcrc_32_tab, header[n], t);
  105.     }
  106.     buf[n++] = zencode(pkeys, pcrc_32_tab, (int)(crcForCrypting >> 16) & 0xff, t);
  107.     buf[n++] = zencode(pkeys, pcrc_32_tab, (int)(crcForCrypting >> 24) & 0xff, t);
  108.     return n;
  109. }
  110. #endif