home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / k95source / ck_crp.c < prev    next >
C/C++ Source or Header  |  2020-01-01  |  167KB  |  5,605 lines

  1. char *ckcrpv = "Encryption Engine, 8.0.115, 27 May 2005";
  2. /*
  3.   C K _ C R P . C  -  Cryptography for C-Kermit"
  4.  
  5.   Copyright (C) 1998, 2004,
  6.     Trustees of Columbia University in the City of New York.
  7.     All rights reserved.  See the C-Kermit COPYING.TXT file or the
  8.     copyright text in the ckcmai.c module for disclaimer and permissions.
  9.  
  10.   Author:
  11.   Jeffrey E Altman (jaltman@secure-endpoints.com)
  12.   Secure Endpoints Inc., New York City
  13. */
  14.  
  15. #define CK_CRP_C
  16. #ifdef CK_DES
  17. #ifdef CK_SSL
  18. #ifndef LIBDES
  19. #define LIBDES
  20. #endif /* LIBDES */
  21. #endif /* CK_SSL */
  22. #endif /* CK_DES */
  23.  
  24. #ifdef CRYPT_DLL
  25. #define CK_AUTHENTICATION
  26. #define CK_ENCRYPTION
  27. #define CK_DES
  28. #define CK_CAST
  29. #ifndef LIBDES
  30. #define LIBDES
  31. #endif /* LIBDES */
  32.  
  33. #define TELCMDS                         /* to define name array */
  34. #define TELOPTS                         /* to define name array */
  35. #define ENCRYPT_NAMES
  36. #endif /* CRYPT_DLL */
  37.  
  38. #include "ckcsym.h"
  39. #include "ckcdeb.h"
  40. #include "ckcnet.h"
  41.  
  42. #ifdef DEBUG
  43. #undef DEBUG
  44. #endif /* DEBUG */
  45.  
  46. #ifdef CK_AUTHENTICATION
  47. #ifdef CK_ENCRYPTION
  48. #define ENCRYPTION
  49. #ifdef CK_DES
  50. #define DES_ENCRYPTION
  51. #endif /* CK_DES */
  52. #ifdef  CK_CAST
  53. #define CAST_ENCRYPTION
  54. #endif /* CK_CAST */
  55. #ifdef COMMENT
  56. #define CAST_EXPORT_ENCRYPTION
  57. #endif /* COMMENT */
  58. #endif /* CK_ENCRYPTION */
  59. #endif /* CK_AUTHENTICATION */
  60.  
  61. #ifdef CK_ENCRYPTION
  62.  
  63. #include "ckucmd.h"                     /* For struct keytab definition */
  64. #include "ckuath.h"
  65. #include "ckuat2.h"
  66. #ifdef MIT_CURRENT
  67. #include <krb5.h>
  68. #endif /* MIT_CURRENT */
  69.  
  70. #include <stdlib.h>
  71. #include <string.h>
  72. #ifdef OS2
  73. #include <stdarg.h>
  74. #ifdef OS2ONLY
  75. #include <os2.h>
  76. #endif /* OS2ONLY */
  77. #include "ckosyn.h"
  78. #else /* OS2 */
  79. static char * tmpstring = NULL;
  80. #endif /* OS2 */
  81.  
  82. #ifndef CAST_OR_EXPORT
  83. #ifdef CAST_ENCRYPTION
  84. #define CAST_OR_EXPORT
  85. #endif /* CAST_ENCRYPTION */
  86. #ifdef CAST_EXPORT_ENCRYPTION
  87. #define CAST_OR_EXPORT
  88. #endif /* CAST_EXPORT_ENCRYPTION */
  89. #endif /* CAST_OR_EXPORT */
  90.  
  91. #ifdef MACOSX
  92. #undef LIBDES
  93. #endif /* MACOSX */
  94.  
  95. #ifdef CRYPT_DLL
  96. int cmd_quoting = 0;
  97.  
  98. #ifndef TELOPT_MACRO
  99. int
  100. telopt_index(opt) int opt; {
  101.     if ( opt >= 0 && opt <= TELOPT_SEND_URL )
  102.         return(opt);
  103.     else if ( opt >= TELOPT_PRAGMA_LOGON && opt <= TELOPT_PRAGMA_HEARTBEAT )
  104.         return(opt-89);
  105.     else
  106.         return(NTELOPTS);
  107. }
  108.  
  109. int
  110. telopt_ok(opt) int opt; {
  111.     return((opt >= TELOPT_BINARY && opt <= TELOPT_SEND_URL) ||
  112.         (opt >= TELOPT_PRAGMA_LOGON && opt <= TELOPT_PRAGMA_HEARTBEAT));
  113. }
  114.  
  115. CHAR *
  116. telopt(opt) int opt; {
  117.     if ( telopt_ok(opt) )
  118.         return(telopts[telopt_index(opt)]);
  119.     else
  120.         return("UNKNOWN");
  121. }
  122. #endif /* TELOPT_MACRO */
  123.  
  124. static int (*p_ttol)(char *,int)=NULL;
  125. static int (*p_dodebug)(int,char *,char *,CK_OFF_T)=NULL;
  126. static int (*p_dohexdump)(char *,char *,int)=NULL;
  127. static void (*p_tn_debug)(char *)=NULL;
  128. static int (*p_vscrnprintf)(char *, ...)=NULL;
  129. static void * p_k5_context=NULL;
  130. static unsigned long (*p_reqtelmutex)(unsigned long)=NULL;
  131. static unsigned long (*p_reltelmutex)(void)=NULL;
  132.  
  133. unsigned long
  134. RequestTelnetMutex(unsigned long x)
  135. {
  136.     if ( p_reqtelmutex )
  137.         return p_reqtelmutex(x);
  138.     return 0;
  139. }
  140.  
  141. unsigned long
  142. ReleaseTelnetMutex(void)
  143. {
  144.     if ( p_reltelmutex )
  145.         return p_reltelmutex();
  146.     return 0;
  147. }
  148.  
  149. int
  150. ttol(char * s, int n)
  151. {
  152.     if ( p_ttol )
  153.         return(p_ttol(s,n));
  154.     else
  155.         return(-1);
  156. }
  157.  
  158. int
  159. dodebug(int flag, char * s1, char * s2, CK_OFF_T n)
  160. {
  161.     if ( p_dodebug )
  162.         return(p_dodebug(flag,s1,s2,n));
  163.     else
  164.         return(-1);
  165. }
  166.  
  167. int
  168. dohexdump( char * s1, char * s2, int n )
  169. {
  170.     if ( p_dohexdump )
  171.         p_dohexdump(s1,s2,n);
  172.     return(0);
  173. }
  174.  
  175. void
  176. tn_debug( char * s )
  177. {
  178.     if ( p_tn_debug )
  179.         p_tn_debug(s);
  180. }
  181.  
  182. static char myprtfstr[4096];
  183. int
  184. Vscrnprintf(const char * format, ...) {
  185.     int i, len, rc=0;
  186.     char *cp;
  187.     va_list ap;
  188.  
  189.     va_start(ap, format);
  190. #ifdef NT
  191.     rc = _vsnprintf(myprtfstr, sizeof(myprtfstr)-1, format, ap);
  192. #else /* NT */
  193.     rc = vsprintf(myprtfstr, format, ap);
  194. #endif /* NT */
  195.     va_end(ap);
  196.  
  197.     if ( p_vscrnprintf )
  198.         return(p_vscrnprintf(myprtfstr));
  199.     else
  200.         return(-1);
  201. }
  202.  
  203. int
  204. #ifdef CK_ANSIC
  205. tn_hex(CHAR * buf, int buflen, CHAR * data, int datalen)
  206. #else /* CK_ANSIC */
  207. tn_hex(buf, buflen, data, datalen)
  208.     CHAR * buf;
  209.     int buflen;
  210.     CHAR * data;
  211.     int datalen;
  212. #endif /* CK_ANSIC */
  213. {
  214.     int i = 0, j = 0, k = 0;
  215.     CHAR tmp[8];
  216. #ifdef COMMENT
  217.     int was_hex = 1;
  218.  
  219.     for (k=0; k < datalen; k++) {
  220.         if (data[k] < 32 || data[k] >= 127) {
  221.             sprintf(tmp,"%s%02X ",was_hex?"":"\" ",data[k]);
  222.             was_hex = 1;
  223.         } else {
  224.             sprintf(tmp,"%s%c",was_hex?"\"":"",data[k]);
  225.             was_hex = 0;
  226.         }
  227.         ckstrncat(buf,tmp,buflen);
  228.     }
  229.     if (!was_hex)
  230.         ckstrncat(buf,"\" ",buflen);
  231. #else /* COMMENT */
  232.     if (datalen <= 0 || data == NULL)
  233.         return(0);
  234.  
  235.     for (i = 0; i < datalen; i++) {
  236.         ckstrncat(buf,"\r\n  ",buflen);
  237.         for (j = 0 ; (j < 16); j++) {
  238.             if ((i + j) < datalen)
  239.               sprintf(tmp,
  240.                       "%s%02x ",
  241.                       (j == 8 ? "| " : ""),
  242.                       (CHAR) data[i + j]
  243.                       );
  244.             else
  245.               sprintf(tmp,
  246.                       "%s   ",
  247.                       (j == 8 ? "| " : "")
  248.                       );
  249.             ckstrncat(buf,tmp,buflen);
  250.         }
  251.         ckstrncat(buf," ",buflen);
  252.         for (k = 0; (k < 16) && ((i + k) < datalen); k++) {
  253.             sprintf(tmp,
  254.                      "%s%c",
  255.                      (k == 8 ? " " : ""),
  256.                      isprint(data[i + k]) ? data[i + k] : '.'
  257.                      );
  258.             ckstrncat(buf,tmp,buflen);
  259.         }
  260.         i += j - 1;
  261.     } /* end for */
  262.     ckstrncat(buf,"\r\n  ",buflen);
  263. #endif /* COMMENT */
  264.     return(strlen(buf));
  265. }
  266.  
  267. #ifdef COMMENT
  268. #define ttol        dll_ttol
  269. #define dodebug     dll_dodebug
  270. #define dohexdump   dll_dohexdump
  271. #define tn_debug    dll_tn_debug
  272. #define Vscrnprintf dll_vscrnprintf
  273. #endif /* COMMENT */
  274.  
  275. char tn_msg[TN_MSG_LEN], hexbuf[TN_MSG_LEN];   /* from ckcnet.c */
  276. int deblog=1, debses=1, tn_deb=1;
  277. #else /* CRYPT_DLL */
  278. extern char tn_msg[], hexbuf[];         /* from ckcnet.c */
  279. extern int deblog, debses, tn_deb;
  280. #ifdef MIT_CURRENT
  281. extern krb5_context k5_context;
  282. #endif /* MIT_CURRENT */
  283. #endif /* CRYPT_DLL */
  284.  
  285. #ifdef LIBDES
  286. #ifdef MACOSX
  287. #define des_new_random_key            ck_des_new_random_key
  288. #define des_set_random_generator_seed ck_des_set_random_generator_seed
  289. #define des_key_sched                 ck_des_key_sched
  290. #define des_ecb_encrypt               ck_des_ecb_encrypt
  291. #define des_string_to_key             ck_des_string_to_key
  292. #define des_fixup_key_parity          ck_des_fixup_key_parity
  293. #endif /* MACOSX */
  294. #ifndef UNIX
  295. #define des_new_random_key            des_random_key
  296. #define des_set_random_generator_seed des_random_seed
  297. #endif /* UNIX */
  298. #define des_fixup_key_parity          des_set_odd_parity
  299. #ifdef OPENSSL_097
  300. #define OPENSSL_ENABLE_OLD_DES_SUPPORT
  301. #include <openssl/des.h>
  302. #endif /* OPENSSL_097 */
  303. #else /* LIBDES */
  304. #ifdef UNIX
  305. #define des_set_random_generator_seed(x) des_init_random_number_generator(x)
  306. #endif /* UNIX */
  307. #ifdef OS2
  308. #define des_new_random_key            ck_des_new_random_key
  309. #define des_set_random_generator_seed ck_des_set_random_generator_seed
  310. #define des_key_sched                 ck_des_key_sched
  311. #define des_ecb_encrypt               ck_des_ecb_encrypt
  312. #define des_string_to_key             ck_des_string_to_key
  313. #define des_fixup_key_parity          ck_des_fixup_key_parity
  314. #endif /* OS2 */
  315. #endif /* LIBDES */
  316.  
  317. #ifdef CK_DES
  318. /* This code comes from Eric Young's libdes package and is not part   */
  319. /* of the standard MIT DES library that is part of Kerberos. However, */
  320. /* it is extremely useful.  So we add it here.                        */
  321.  
  322.  
  323. /* Weak and semi week keys as take from
  324.  * %A D.W. Davies
  325.  * %A W.L. Price
  326.  * %T Security for Computer Networks
  327.  * %I John Wiley & Sons
  328.  * %D 1984
  329.  * Many thanks to smb@ulysses.att.com (Steven Bellovin) for the reference
  330.  * (and actual cblock values).
  331.  */
  332. #define NUM_WEAK_KEY    16
  333. static Block weak_keys[NUM_WEAK_KEY]={
  334.         /* weak keys */
  335.         {0x01,0x01,0x01,0x01,0x01,0x01,0x01,0x01},
  336.         {0xFE,0xFE,0xFE,0xFE,0xFE,0xFE,0xFE,0xFE},
  337.         {0x1F,0x1F,0x1F,0x1F,0x1F,0x1F,0x1F,0x1F},
  338.         {0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0,0xE0},
  339.         /* semi-weak keys */
  340.         {0x01,0xFE,0x01,0xFE,0x01,0xFE,0x01,0xFE},
  341.         {0xFE,0x01,0xFE,0x01,0xFE,0x01,0xFE,0x01},
  342.         {0x1F,0xE0,0x1F,0xE0,0x0E,0xF1,0x0E,0xF1},
  343.         {0xE0,0x1F,0xE0,0x1F,0xF1,0x0E,0xF1,0x0E},
  344.         {0x01,0xE0,0x01,0xE0,0x01,0xF1,0x01,0xF1},
  345.         {0xE0,0x01,0xE0,0x01,0xF1,0x01,0xF1,0x01},
  346.         {0x1F,0xFE,0x1F,0xFE,0x0E,0xFE,0x0E,0xFE},
  347.         {0xFE,0x1F,0xFE,0x1F,0xFE,0x0E,0xFE,0x0E},
  348.         {0x01,0x1F,0x01,0x1F,0x01,0x0E,0x01,0x0E},
  349.         {0x1F,0x01,0x1F,0x01,0x0E,0x01,0x0E,0x01},
  350.         {0xE0,0xFE,0xE0,0xFE,0xF1,0xFE,0xF1,0xFE},
  351.         {0xFE,0xE0,0xFE,0xE0,0xFE,0xF1,0xFE,0xF1}};
  352.  
  353. int
  354. ck_des_is_weak_key(key)
  355. Block key;
  356. {
  357.     int i;
  358.  
  359.     for (i=0; i<NUM_WEAK_KEY; i++) {
  360.         /* Added == 0 to comparision, I obviously don't run
  361.         * this section very often :-(, thanks to
  362.         * engineering@MorningStar.Com for the fix
  363.         * eay 93/06/29
  364.         * Another problem, I was comparing only the first 4
  365.         * bytes, 97/03/18 */
  366.         if (memcmp(weak_keys[i],key,sizeof(Block)) == 0)
  367.             return(1);
  368.     }
  369.     return(0);
  370. }
  371.  
  372. #ifdef UNIX
  373. #ifdef LIBDES
  374. #ifndef MACOSX
  375. /* These functions are not part of Eric Young's DES library */
  376. /* _unix_time_gmt_unixsec                                  */
  377. /* _des_set_random_generator_seed                          */
  378. /* _des_fixup_key_parity   (added in 0.9.5)                */
  379. /* _des_new_random_key                                     */
  380. #include <sys/time.h>
  381.  
  382. unsigned long
  383. unix_time_gmt_unixsec (usecptr)
  384.     unsigned long  *usecptr;
  385. {
  386.     struct timeval  now;
  387.  
  388.     (void) gettimeofday (&now, (struct timezone *)0);
  389.     if (usecptr)
  390.         *usecptr = now.tv_usec;
  391.     return now.tv_sec;
  392. }
  393.  
  394. void
  395. des_set_random_generator_seed(Block B)
  396. {
  397.     des_random_seed(B);
  398.     return;
  399. }
  400.  
  401. #ifdef COMMENT
  402. /* added to openssl in 0.9.5 */
  403. void
  404. des_fixup_key_parity(Block B)
  405. {
  406.     des_set_odd_parity(B);
  407.     return;
  408. }
  409. #endif /* COMMENT */
  410. int
  411. des_new_random_key(Block B)
  412. {
  413.     int rc=0;
  414.     rc = des_random_key(B);
  415.     return(rc);
  416. }
  417.  
  418. #endif /* MACOSX */
  419. #endif /* LIBDES */
  420. #endif /* UNIX */
  421. #endif /* CK_DES */
  422.  
  423. /*
  424.  * Copyright (c) 1991, 1993
  425.  *      The Regents of the University of California.  All rights reserved.
  426.  *
  427.  * Redistribution and use in source and binary forms, with or without
  428.  * modification, are permitted provided that the following conditions
  429.  * are met:
  430.  * 1. Redistributions of source code must retain the above copyright
  431.  *    notice, this list of conditions and the following disclaimer.
  432.  * 2. Redistributions in binary form must reproduce the above copyright
  433.  *    notice, this list of conditions and the following disclaimer in the
  434.  *    documentation and/or other materials provided with the distribution.
  435.  * 3. All advertising materials mentioning features or use of this software
  436.  *    must display the following acknowledgement:
  437.  *      This product includes software developed by the University of
  438.  *      California, Berkeley and its contributors.
  439.  * 4. Neither the name of the University nor the names of its contributors
  440.  *    may be used to endorse or promote products derived from this software
  441.  *    without specific prior written permission.
  442.  *
  443.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  444.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  445.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  446.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  447.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  448.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  449.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  450.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  451.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  452.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  453.  * SUCH DAMAGE.
  454.  */
  455.  
  456. /* based on @(#)encrypt.c       8.1 (Berkeley) 6/4/93 */
  457.  
  458. /*
  459.  * Copyright (C) 1990 by the Massachusetts Institute of Technology
  460.  *
  461.  * Export of this software from the United States of America may
  462.  * require a specific license from the United States Government.
  463.  * It is the responsibility of any person or organization contemplating
  464.  * export to obtain such a license before exporting.
  465.  *
  466.  * WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
  467.  * distribute this software and its documentation for any purpose and
  468.  * without fee is hereby granted, provided that the above copyright
  469.  * notice appear in all copies and that both that copyright notice and
  470.  * this permission notice appear in supporting documentation, and that
  471.  * the name of M.I.T. not be used in advertising or publicity pertaining
  472.  * to distribution of the software without specific, written prior
  473.  * permission.  M.I.T. makes no representations about the suitability of
  474.  * this software for any purpose.  It is provided "as is" without express
  475.  * or implied warranty.
  476.  */
  477.  
  478. #include <stdio.h>
  479.  
  480. /*
  481.  * These function pointers point to the current routines
  482.  * for encrypting and decrypting data.
  483.  */
  484. static VOID     (*encrypt_output) P((unsigned char *, int));
  485. static int      (*decrypt_input) P((int));
  486.  
  487. #ifdef DEBUG
  488. static int encrypt_debug_mode = 1;
  489. static int encrypt_verbose = 1;
  490. #else
  491. static int encrypt_verbose = 1;
  492. static int encrypt_debug_mode = 0;
  493. #endif
  494.  
  495. static char dbgbuf [16384];
  496.  
  497. static int decrypt_mode = 0;
  498. static int encrypt_mode = 0;
  499. static int autoencrypt = 1;
  500. static int autodecrypt = 1;
  501. static int havesessionkey = 0;
  502.  
  503. static kstream EncryptKSGlobalHack = NULL;
  504. static int     EncryptType = ENCTYPE_ANY;
  505.  
  506. #define typemask(x)     ((x) > 0 ? 1 << ((x)-1) : 0)
  507.  
  508. static long i_support_encrypt =
  509.         typemask(ENCTYPE_DES_CFB64) | typemask(ENCTYPE_DES_OFB64);
  510. static long i_support_decrypt =
  511.         typemask(ENCTYPE_DES_CFB64) | typemask(ENCTYPE_DES_OFB64);
  512. static long i_wont_support_encrypt = 0;
  513. static long i_wont_support_decrypt = 0;
  514. #define I_SUPPORT_ENCRYPT       (i_support_encrypt & ~i_wont_support_encrypt)
  515. #define I_SUPPORT_DECRYPT       (i_support_decrypt & ~i_wont_support_decrypt)
  516.  
  517. static long remote_supports_encrypt = 0;
  518. static long remote_supports_decrypt = 0;
  519.  
  520. /* Make sure that this list is in order of algorithm strength     */
  521. /* as it determines the search order for selecting specific       */
  522. /* encryption choices.  All CFB modes must come before OFB modes. */
  523. static Encryptions encryptions[] = {
  524. #ifdef DES_ENCRYPTION
  525.     { "DES3_CFB64",
  526.           ENCTYPE_DES3_CFB64,
  527.           des3_cfb64_encrypt,
  528.           des3_cfb64_decrypt,
  529.           des3_cfb64_init,
  530.           des3_cfb64_start,
  531.           des3_cfb64_is,
  532.           des3_cfb64_reply,
  533.           des3_cfb64_session,
  534.           des3_cfb64_keyid,
  535.           NULL },
  536. #endif /* DES_ENCRYPTION */
  537. #ifdef CAST_ENCRYPTION
  538. #ifndef CAST_EXPORT_ENCRYPTION
  539.     { "CAST128_CFB64",  ENCTYPE_CAST128_CFB64,
  540.           cast_cfb64_encrypt,
  541.           cast_cfb64_decrypt,
  542.           cast_cfb64_init,
  543.           cast_cfb64_start,
  544.           cast_cfb64_is,
  545.           cast_cfb64_reply,
  546.           cast_cfb64_session,
  547.           cast_cfb64_keyid,
  548.           NULL },
  549. #endif
  550. #endif
  551. #ifdef DES_ENCRYPTION
  552.     { "DES_CFB64",
  553.           ENCTYPE_DES_CFB64,
  554.           cfb64_encrypt,
  555.           cfb64_decrypt,
  556.           cfb64_init,
  557.           cfb64_start,
  558.           cfb64_is,
  559.           cfb64_reply,
  560.           cfb64_session,
  561.           cfb64_keyid,
  562.           NULL },
  563. #endif  /* DES_ENCRYPTION */
  564. #if defined (CAST_EXPORT_ENCRYPTION) || defined(CAST_ENCRYPTION)
  565.     { "CAST5_40_CFB64", ENCTYPE_CAST5_40_CFB64,
  566.           castexp_cfb64_encrypt,
  567.           castexp_cfb64_decrypt,
  568.           castexp_cfb64_init,
  569.           castexp_cfb64_start,
  570.           castexp_cfb64_is,
  571.           castexp_cfb64_reply,
  572.           castexp_cfb64_session,
  573.           castexp_cfb64_keyid,
  574.           NULL },
  575. #endif /* CAST_ENCRYPTION */
  576. #ifdef DES_ENCRYPTION
  577.     { "DES3_OFB64",
  578.           ENCTYPE_DES3_OFB64,
  579.           des3_ofb64_encrypt,
  580.           des3_ofb64_decrypt,
  581.           des3_ofb64_init,
  582.           des3_ofb64_start,
  583.           des3_ofb64_is,
  584.           des3_ofb64_reply,
  585.           des3_ofb64_session,
  586.           des3_ofb64_keyid,
  587.           NULL },
  588. #endif /* DES_ENCRYPTION */
  589. #ifdef CAST_ENCRYPTION
  590. #ifndef CAST_EXPORT_ENCRYPTION
  591.     { "CAST128_OFB64",  ENCTYPE_CAST128_OFB64,
  592.           cast_ofb64_encrypt,
  593.           cast_ofb64_decrypt,
  594.           cast_ofb64_init,
  595.           cast_ofb64_start,
  596.           cast_ofb64_is,
  597.           cast_ofb64_reply,
  598.           cast_ofb64_session,
  599.           cast_ofb64_keyid,
  600.           NULL },
  601. #endif
  602. #endif
  603. #ifdef DES_ENCRYPTION
  604.     { "DES_OFB64",
  605.           ENCTYPE_DES_OFB64,
  606.           ofb64_encrypt,
  607.           ofb64_decrypt,
  608.           ofb64_init,
  609.           ofb64_start,
  610.           ofb64_is,
  611.           ofb64_reply,
  612.           ofb64_session,
  613.           ofb64_keyid,
  614.           NULL },
  615. #endif  /* DES_ENCRYPTION */
  616. #if defined (CAST_EXPORT_ENCRYPTION) || defined(CAST_ENCRYPTION)
  617.     { "CAST5_40_OFB64", ENCTYPE_CAST5_40_OFB64,
  618.           castexp_ofb64_encrypt,
  619.           castexp_ofb64_decrypt,
  620.           castexp_ofb64_init,
  621.           castexp_ofb64_start,
  622.           castexp_ofb64_is,
  623.           castexp_ofb64_reply,
  624.           castexp_ofb64_session,
  625.           castexp_ofb64_keyid,
  626.           NULL },
  627. #endif /* CAST_ENCRYPTION */
  628.     { 0,0,0,0,0,0,0,0,0,0,0  }
  629. };
  630.  
  631. int
  632. get_crypt_table( struct keytab ** pTable, int * pN )
  633. {
  634.     int i=0,n=0;
  635.  
  636.     if ( *pTable )
  637.     {
  638.         for ( i=0 ; i < *pN ; i++ )
  639.             free( (*pTable)[i].kwd ) ;
  640.         free ( *pTable )  ;
  641.     }
  642.     *pTable = NULL;
  643.     *pN = 0;
  644.  
  645.     /* How many encryption types do we have? */
  646.     while ( encryptions[n].name )
  647.         n++;
  648.  
  649.     if ( n )
  650.     {
  651.         *pTable = malloc( sizeof(struct keytab) * (n+2) ) ;
  652.         if ( !(*pTable) )
  653.             return(0);
  654.  
  655. #ifdef OS2
  656.         (*pTable)[0].kwd =strdup("automatic");
  657. #else /* OS2 */
  658.         makestr(&tmpstring,"automatic");
  659.         (*pTable)[0].kwd = tmpstring;
  660.         tmpstring = NULL;
  661. #endif /* OS2 */
  662.         (*pTable)[0].kwval = ENCTYPE_ANY;
  663.         (*pTable)[0].flgs = 0;
  664. #ifdef OS2
  665.         (*pTable)[1].kwd =strdup("none");
  666. #else /* OS2 */
  667.         makestr(&tmpstring,"none");
  668.         (*pTable)[1].kwd = tmpstring;
  669.         tmpstring = NULL;
  670. #endif /* OS2 */
  671.         (*pTable)[1].kwval = 999;
  672.         (*pTable)[1].flgs = 0;
  673.         (*pN) = 2;
  674.  
  675.         for ( i=0 ; i < n ; i++ ) {
  676.             char * newstr = NULL, * p;
  677.             int newval = encryptions[i].type;
  678.             int j = 0, len = 0;
  679.  
  680. #ifdef OS2
  681.             newstr = strdup(encryptions[i].name);
  682.             strlwr(newstr);
  683. #else /* OS2 */
  684.             makestr(&tmpstring,encryptions[i].name);
  685.             newstr = tmpstring;
  686.             tmpstring = NULL;
  687.             for (p = newstr; *p; p++) if (isupper(*p)) *p = tolower(*p);
  688. #endif /* OS2 */
  689.  
  690.             for (j = 0; j < (*pN); j++) {
  691.                 int tempval = 0;
  692.                 char * tempstr = NULL;
  693.  
  694.                 if ( strcmp( (*pTable)[j].kwd, newstr ) > 0 )
  695.                 {
  696.                     tempval = (*pTable)[j].kwval;
  697.                     tempstr = (*pTable)[j].kwd;
  698.                     (*pTable)[j].kwd = newstr ;
  699.                     (*pTable)[j].kwval = newval;
  700.                     newval = tempval;
  701.                     newstr = tempstr;
  702.                     (*pTable)[j].flgs = 0;
  703.                 }
  704.             }
  705.             (*pTable)[*pN].kwd = newstr ;
  706.             (*pTable)[*pN].kwval = newval;
  707.             (*pTable)[*pN].flgs = 0 ;
  708.             (*pN)++ ;
  709.         }
  710.     } else {
  711.         *pTable = malloc( sizeof(struct keytab) * 2 ) ;
  712.         if ( !(*pTable) )
  713.             return(0);
  714.  
  715. #ifdef OS2
  716.         (*pTable)[0].kwd =strdup("automatic");
  717. #else /* OS2 */
  718.         makestr(&tmpstring,"automatic");
  719.         (*pTable)[0].kwd = tmpstring;
  720.         tmpstring = NULL;
  721. #endif /* OS2 */
  722.         (*pTable)[0].kwval = ENCTYPE_ANY;
  723.         (*pTable)[0].flgs = 0;
  724. #ifdef OS2
  725.         (*pTable)[1].kwd =strdup("none");
  726. #else /* OS2 */
  727.         makestr(&tmpstring,"none");
  728.         (*pTable)[1].kwd = tmpstring;
  729.         tmpstring = NULL;
  730. #endif /* OS2 */
  731.         (*pTable)[1].kwval = 999;
  732.         (*pTable)[1].flgs = 0;
  733.         (*pN) = 2;
  734.     }
  735.     return(*pN);
  736. }
  737.  
  738. static unsigned char str_send[64] = { IAC, SB, TELOPT_ENCRYPTION,
  739.                                       ENCRYPT_SUPPORT };
  740. static unsigned char str_suplen = 0;
  741. static unsigned char str_start[72] = { IAC, SB, TELOPT_ENCRYPTION };
  742. static unsigned char str_end[] = { IAC, SB, TELOPT_ENCRYPTION, 0, IAC, SE };
  743.  
  744. _PROTOTYP(int  encrypt_request_end, (VOID));
  745. _PROTOTYP(int  encrypt_request_start, (VOID));
  746. _PROTOTYP(int  encrypt_enc_keyid, (unsigned char *, int));
  747. _PROTOTYP(int  encrypt_dec_keyid, (unsigned char *, int));
  748. _PROTOTYP(int  encrypt_support, (unsigned char *, int));
  749. _PROTOTYP(int  encrypt_start, (unsigned char *, int));
  750. _PROTOTYP(int  encrypt_end, (VOID));
  751.  
  752. _PROTOTYP(int encrypt_ks_stream,(struct kstream_data_block *, /* output */
  753.                                    struct kstream_data_block *)); /* input */
  754.  
  755. _PROTOTYP(int decrypt_ks_stream,(struct kstream_data_block *, /* output */
  756.                                    struct kstream_data_block *)); /* input */
  757.  
  758. int
  759. #ifdef CK_ANSIC
  760. encrypt_ks_stream(struct kstream_data_block *i,
  761.                   struct kstream_data_block *o)
  762. #else
  763. encrypt_ks_stream(i,o)
  764.     struct kstream_data_block *i; struct kstream_data_block *o;
  765. #endif
  766. {
  767.     /*
  768.     * this is really quite bogus, since it does an in-place encryption...
  769.     */
  770.     if (encrypt_output) {
  771.         encrypt_output(i->ptr, i->length);
  772.         return 1;
  773.     }
  774.     return 0;
  775. }
  776.  
  777.  
  778. int
  779. #ifdef CK_ANSIC
  780. decrypt_ks_stream(struct kstream_data_block *i,
  781.                   struct kstream_data_block *o)
  782. #else
  783. decrypt_ks_stream(i,o)
  784.     struct kstream_data_block *i; struct kstream_data_block *o;
  785. #endif
  786. {
  787.     unsigned int len;
  788.   /*
  789.    * this is really quite bogus, since it does an in-place decryption...
  790.    */
  791.     if (decrypt_input) {
  792.         for (len = 0 ; len < i->length ; len++)
  793.             ((unsigned char *)i->ptr)[len]
  794.                 = decrypt_input(((unsigned char *)i->ptr)[len]);
  795.         return 1;
  796.     }
  797.     return 0;
  798. }
  799.  
  800. int
  801. #ifdef CK_ANSIC
  802. decrypt_ks_hack(unsigned char *buf, int cnt)
  803. #else
  804. decrypt_ks_hack(buf,cnt) unsigned char *buf; int cnt;
  805. #endif
  806. {
  807.     int len;
  808.   /*
  809.    * this is really quite bogus, since it does an in-place decryption...
  810.    */
  811.     for (len = 0 ; len < cnt ; len++)
  812.         buf[len] = decrypt_input(buf[len]);
  813.  
  814. #ifdef DEBUG
  815.     hexdump("decrypt ks hack", buf, cnt);
  816. #endif
  817.     return 1;
  818. }
  819.  
  820.  
  821. /*
  822.  * parsedat[0] == the suboption we might be negotiating,
  823.  */
  824. int
  825. #ifdef CK_ANSIC
  826. encrypt_parse(unsigned char *parsedat, int end_sub)
  827. #else
  828. encrypt_parse(parsedat,end_sub) unsigned char *parsedat; int end_sub;
  829. #endif
  830. {
  831.     int rc = 0;
  832.  
  833.     switch(parsedat[1]) {
  834.     case ENCRYPT_START:
  835.         rc = encrypt_start(parsedat + 2, end_sub - 2);
  836.         break;
  837.     case ENCRYPT_END:
  838.         rc = encrypt_end();
  839.         break;
  840.     case ENCRYPT_SUPPORT:
  841.         rc = encrypt_support(parsedat + 2, end_sub - 2);
  842.         break;
  843.     case ENCRYPT_REQSTART:
  844.         rc = encrypt_request_start();
  845.         break;
  846.     case ENCRYPT_REQEND:
  847.         /*
  848.         * We can always send an REQEND so that we cannot
  849.         * get stuck encrypting.  We should only get this
  850.         * if we have been able to get in the correct mode
  851.         * anyhow.
  852.         */
  853.         rc = encrypt_request_end();
  854.         break;
  855.     case ENCRYPT_IS:
  856.         rc = encrypt_is(parsedat + 2, end_sub - 2);
  857.         break;
  858.     case ENCRYPT_REPLY:
  859.         rc = encrypt_reply(parsedat + 2, end_sub - 2);
  860.         break;
  861.     case ENCRYPT_ENC_KEYID:
  862.         rc = encrypt_enc_keyid(parsedat + 2, end_sub - 2);
  863.         break;
  864.     case ENCRYPT_DEC_KEYID:
  865.         rc = encrypt_dec_keyid(parsedat + 2, end_sub - 2);
  866.         break;
  867.     default:
  868.         rc = -1;
  869.         break;
  870.     }
  871.     return(rc);
  872. }
  873.  
  874. /* XXX */
  875. Encryptions *
  876. #ifdef CK_ANSIC
  877. findencryption(int type)
  878. #else
  879. findencryption(type) int type;
  880. #endif
  881. {
  882.     Encryptions *ep = encryptions;
  883.  
  884.     if (!(I_SUPPORT_ENCRYPT & remote_supports_decrypt & typemask(type)))
  885.         return(0);
  886.     while (ep->type && ep->type != type)
  887.         ++ep;
  888.     return(ep->type ? ep : 0);
  889. }
  890.  
  891. Encryptions *
  892. #ifdef CK_ANSIC
  893. finddecryption(int type)
  894. #else
  895. finddecryption(type) int type;
  896. #endif
  897. {
  898.     Encryptions *ep = encryptions;
  899.  
  900.     if (!(I_SUPPORT_DECRYPT & remote_supports_encrypt & typemask(type)))
  901.         return(0);
  902.     while (ep->type && ep->type != type)
  903.         ++ep;
  904.     return(ep->type ? ep : 0);
  905. }
  906.  
  907. #define MAXKEYLEN 64
  908.  
  909. static struct key_info {
  910.     unsigned char keyid[MAXKEYLEN];
  911.     int keylen;
  912.     int dir;
  913.     int *modep;
  914.     Encryptions *(*getcrypt)();
  915. } ki[2] = {
  916.     { { 0 }, 0, DIR_ENCRYPT, &encrypt_mode, findencryption },
  917.     { { 0 }, 0, DIR_DECRYPT, &decrypt_mode, finddecryption },
  918. };
  919.  
  920. VOID
  921. #ifdef CK_ANSIC
  922. encrypt_init(kstream iks, int type)
  923. #else
  924. encrypt_init(iks, type) kstream iks; int type;
  925. #endif
  926. {
  927.     Encryptions *ep = encryptions;
  928.  
  929.     i_support_encrypt = i_support_decrypt = 0;
  930.     remote_supports_encrypt = remote_supports_decrypt = 0;
  931.     i_wont_support_encrypt = i_wont_support_decrypt = 0;
  932.     encrypt_mode = 0;
  933.     decrypt_mode = 0;
  934.     encrypt_output = NULL;
  935.     decrypt_input = NULL;
  936.     ki[0].keylen = 0;
  937.     memset(ki[0].keyid,0,MAXKEYLEN);
  938.     ki[1].keylen = 0;
  939.     memset(ki[1].keyid,0,MAXKEYLEN);
  940.     havesessionkey = 0;
  941.     autoencrypt = 1;
  942.     autodecrypt = 1;
  943.  
  944.     EncryptKSGlobalHack = iks;
  945.     EncryptType = type;
  946.  
  947.     str_send[0] = IAC;
  948.     str_send[1] = SB;
  949.     str_send[2] = TELOPT_ENCRYPTION;
  950.     str_send[3] = ENCRYPT_SUPPORT;
  951.     str_suplen = 4;
  952.  
  953.     while (ep->type) {
  954.         if ( EncryptType == ENCTYPE_ANY ||
  955.              EncryptType == ep->type ) {
  956. #ifdef DEBUG
  957.             if (encrypt_debug_mode) {
  958.                 sprintf(dbgbuf, ">>>I will support %s\n",
  959.                          ENCTYPE_NAME(ep->type));       /* safe */
  960.                 debug(F110,"encrypt_init",dbgbuf,0);
  961.             }
  962. #endif
  963.             i_support_encrypt |= typemask(ep->type);
  964.             i_support_decrypt |= typemask(ep->type);
  965.             if ((i_wont_support_decrypt & typemask(ep->type)) == 0)
  966.                 if ((str_send[str_suplen++] = ep->type) == IAC)
  967.                     str_send[str_suplen++] = IAC;
  968.         }
  969.         if (ep->init)
  970.             (*ep->init)(0);
  971.         ++ep;
  972.     }
  973.     str_send[str_suplen++] = IAC;
  974.     str_send[str_suplen++] = SE;
  975. }
  976.  
  977. VOID
  978. #ifdef CK_ANSIC
  979. encrypt_send_support(VOID)
  980. #else
  981. encrypt_send_support()
  982. #endif
  983. {
  984.     Encryptions *ep = encryptions;
  985.  
  986. #ifdef CK_SSL
  987.     if (TELOPT_SB(TELOPT_START_TLS).start_tls.me_follows)
  988.         return;
  989. #endif /* CK_SSL */
  990.  
  991.     str_send[0] = IAC;
  992.     str_send[1] = SB;
  993.     str_send[2] = TELOPT_ENCRYPTION;
  994.     str_send[3] = ENCRYPT_SUPPORT;
  995.     str_suplen = 4;
  996.  
  997.     while (ep->type) {
  998.         if ( EncryptType == ENCTYPE_ANY ||
  999.              EncryptType == ep->type ) {
  1000. #ifdef DEBUG
  1001.             if (encrypt_debug_mode) {
  1002.                 sprintf(dbgbuf, ">>>I will support %s\n",
  1003.                          ENCTYPE_NAME(ep->type));               /* safe */
  1004.                 debug(F110,"encrypt_send_support",dbgbuf,0);
  1005.             }
  1006. #endif
  1007.             if ((i_wont_support_decrypt & typemask(ep->type)) == 0)
  1008.                 if ((str_send[str_suplen++] = ep->type) == IAC)
  1009.                     str_send[str_suplen++] = IAC;
  1010.         }
  1011.         ++ep;
  1012.     }
  1013.     str_send[str_suplen++] = IAC;
  1014.     str_send[str_suplen++] = SE;
  1015.  
  1016.     /*
  1017.     * If the user has requested that decryption start
  1018.     * immediatly, then send a "REQUEST START" before
  1019.     * we negotiate the type.
  1020.     */
  1021.     if (autodecrypt)
  1022.         encrypt_send_request_start();
  1023.  
  1024.     if (deblog || tn_deb || debses) {
  1025.         int i;
  1026.         sprintf(tn_msg,"TELNET SENT SB %s SUPPORT ",
  1027.                  TELOPT(TELOPT_ENCRYPTION));                    /* safe */
  1028.         for ( i=4;i<str_suplen-2;i++ ) {
  1029.             if ( str_send[i] == IAC ) {
  1030.                 ckstrncat(tn_msg,"IAC ",TN_MSG_LEN);
  1031.                 i++;
  1032.             }
  1033.             ckstrncat(tn_msg,ENCTYPE_NAME(str_send[i]),TN_MSG_LEN);
  1034.             ckstrncat(tn_msg," ",TN_MSG_LEN);
  1035.         }
  1036.         ckstrncat(tn_msg,"IAC SE",TN_MSG_LEN);
  1037.         debug(F100,tn_msg,"",0);
  1038.         if (tn_deb || debses) tn_debug(tn_msg);
  1039.     }
  1040. #ifdef OS2
  1041.     RequestTelnetMutex( SEM_INDEFINITE_WAIT );
  1042. #endif
  1043.     ttol(str_send, str_suplen);
  1044. #ifdef OS2
  1045.     ReleaseTelnetMutex();
  1046. #endif
  1047.  
  1048.     str_suplen = 0;
  1049. }
  1050.  
  1051. /*
  1052.  * Called when ENCRYPT SUPPORT is received.
  1053.  */
  1054. int
  1055. #ifdef CK_ANSIC
  1056. encrypt_support(unsigned char *_typelist, int _cnt)
  1057. #else
  1058. encrypt_support(_typelist, _cnt) unsigned char * _typelist; int _cnt;
  1059. #endif
  1060. {
  1061.     register int type, use_type = 0;
  1062.     unsigned char * typelist = _typelist;
  1063.     int cnt = _cnt;
  1064.     Encryptions *ep;
  1065.  
  1066.     debug(F111,"encrypt_support","cnt",cnt);
  1067.  
  1068.   /*
  1069.    * Forget anything the other side has previously told us.
  1070.    */
  1071.     remote_supports_decrypt = 0;
  1072.  
  1073.     while (cnt-- > 0) {
  1074.         type = *typelist++;
  1075.         if ( EncryptType == ENCTYPE_ANY ||
  1076.              EncryptType == type ) {
  1077. #ifdef DEBUG
  1078.             if (encrypt_debug_mode) {
  1079.                 sprintf(dbgbuf, ">>>Remote supports %s (%d)\n",
  1080.                          ENCTYPE_NAME(type), type);             /* safe */
  1081.                 debug(F110,"encrypt_support",dbgbuf,0);
  1082.             }
  1083. #endif
  1084.             if ((type < ENCTYPE_CNT) &&
  1085.                  (I_SUPPORT_ENCRYPT & typemask(type))) {
  1086.                 remote_supports_decrypt |= typemask(type);
  1087.                 if (use_type == 0)
  1088.                     use_type = type;
  1089.             }
  1090.         }
  1091.     }
  1092.     if (use_type) {
  1093.         ep = findencryption(use_type);
  1094.         if (!ep) {
  1095.             debug(F111,"encrypt_support","findencryption == NULL",use_type);
  1096.             return(-1);
  1097.         }
  1098.         type = ep->start ? (*ep->start)(DIR_ENCRYPT, 0) : 0;
  1099. #ifdef DEBUG
  1100.         if (encrypt_debug_mode) {
  1101.             sprintf(dbgbuf, ">>>(*ep->start)() %s returned %d (%s)\n",
  1102.                      ENCTYPE_NAME(use_type), type,
  1103.                      ENCRYPT_NAME(type));                       /* safe */
  1104.             debug(F110,"encrypt_support",dbgbuf,0);
  1105.         }
  1106. #endif
  1107.         if (type < 0) {
  1108.             debug(F111,"encrypt_support","type < 0",type);
  1109.             return(-1);
  1110.         }
  1111.         encrypt_mode = use_type;
  1112.         if (type == 0)
  1113.             encrypt_start_output(use_type);
  1114.         debug(F111,"encrypt_support","success",type);
  1115.         return(0);
  1116.     }
  1117.     debug(F111,"encrypt_support","failed",use_type);
  1118.     return(-1);
  1119. }
  1120.  
  1121. int
  1122. #ifdef CK_ANSIC
  1123. encrypt_is(unsigned char *data, int cnt)
  1124. #else
  1125. encrypt_is(data, cnt) unsigned char *data; int cnt;
  1126. #endif /* CK_ANSIC */
  1127. {
  1128.     Encryptions *ep;
  1129.     register int type, ret;
  1130.  
  1131.     if (--cnt < 0)
  1132.         return(-1);
  1133.     type = *data++;
  1134.     if (type < ENCTYPE_CNT)
  1135.         remote_supports_encrypt |= typemask(type);
  1136.     if (!(ep = finddecryption(type))) {
  1137. #ifdef DEBUG
  1138.         if (encrypt_debug_mode) {
  1139.             sprintf(dbgbuf, ">>>encrypt_is:  "
  1140.                      "Can't find type %s (%d) for initial negotiation\n",
  1141.                      ENCTYPE_NAME_OK(type)
  1142.                      ? ENCTYPE_NAME(type) : "(unknown)",
  1143.                      type);                                     /* safe */
  1144.             debug(F110,"encrypt_is",dbgbuf,0);
  1145.         }
  1146. #endif
  1147.         return(-1);
  1148.     }
  1149.     if (!ep->is) {
  1150. #ifdef DEBUG
  1151.         if (encrypt_debug_mode) {
  1152.             sprintf(dbgbuf, ">>>encrypt_is:  "
  1153.                      "No initial negotiation needed for type %s (%d)\n",
  1154.                      ENCTYPE_NAME_OK(type)
  1155.                      ? ENCTYPE_NAME(type) : "(unknown)",
  1156.                      type);                                     /* safe */
  1157.             debug(F110,"encrypt_is",dbgbuf,0);
  1158.         }
  1159. #endif
  1160.         ret = 0;
  1161.     } else {
  1162.         ret = (*ep->is)(data, cnt);
  1163. #ifdef DEBUG
  1164.         if (encrypt_debug_mode) {
  1165.             sprintf(dbgbuf, "encrypt_is:  "
  1166.                      "(*ep->is)(%x, %d) returned %s(%d)\n", data, cnt,
  1167.                      (ret < 0) ? "FAIL " :
  1168.                      (ret == 0) ? "SUCCESS " : "MORE_TO_DO ", ret); /* safe */
  1169.             debug(F110,"encrypt_is",dbgbuf,0);
  1170.         }
  1171. #endif
  1172.     }
  1173.     if (ret < 0) {
  1174.         autodecrypt = 0;
  1175.         return(-1);
  1176.     } else {
  1177.         decrypt_mode = type;
  1178.         if (ret == 0 && autodecrypt) {
  1179.             encrypt_send_request_start();
  1180.         }
  1181.     }
  1182.     return(0);
  1183. }
  1184.  
  1185. int
  1186. #ifdef CK_ANSIC
  1187. encrypt_reply(unsigned char *data, int cnt)
  1188. #else
  1189. encrypt_reply(data, cnt) unsigned char *data; int cnt;
  1190. #endif
  1191. {
  1192.     Encryptions *ep;
  1193.     register int ret, type;
  1194.  
  1195.     if (--cnt < 0)
  1196.         return(-1);
  1197.     type = *data++;
  1198.     if (!(ep = findencryption(type))) {
  1199. #ifdef DEBUG
  1200.         if (encrypt_debug_mode) {
  1201.             sprintf(dbgbuf,
  1202.                     ">>>Can't find type %s (%d) for initial negotiation\n",
  1203.                      ENCTYPE_NAME_OK(type)
  1204.                      ? ENCTYPE_NAME(type) : "(unknown)",
  1205.                      type);                                     /* safe */
  1206.             debug(F110,"encrypt_reply",dbgbuf,0);
  1207.         }
  1208. #endif
  1209.         return(-1);
  1210.     }
  1211.     if (!ep->reply) {
  1212. #ifdef DEBUG
  1213.         if (encrypt_debug_mode) {
  1214.       sprintf(dbgbuf, ">>>No initial negotiation needed for type %s (%d)\n",
  1215.                ENCTYPE_NAME_OK(type)
  1216.                ? ENCTYPE_NAME(type) : "(unknown)",
  1217.                type);                                           /* safe */
  1218.             debug(F110,"encrypt_reply",dbgbuf,0);
  1219.         }
  1220. #endif
  1221.         ret = 0;
  1222.     } else {
  1223.         ret = (*ep->reply)(data, cnt);
  1224. #ifdef DEBUG
  1225.         if (encrypt_debug_mode) {
  1226.             sprintf(dbgbuf, "(*ep->reply)(%x, %d) returned %s(%d)\n",
  1227.                      data, cnt,
  1228.                      (ret < 0) ? "FAIL " :
  1229.                      (ret == 0) ? "SUCCESS " : "MORE_TO_DO ", ret); /* safe */
  1230.             debug(F110,"encrypt_reply",dbgbuf,0);
  1231.         }
  1232. #endif
  1233.     }
  1234. #ifdef DEBUG
  1235.     if (encrypt_debug_mode) {
  1236.         sprintf(dbgbuf, ">>>encrypt_reply returned %d\n", ret); /* safe */
  1237.         debug(F110,"encrypt_reply",dbgbuf,0);
  1238.     }
  1239. #endif
  1240.     if (ret < 0) {
  1241.         autoencrypt = 0;
  1242.         return(-1);
  1243.     } else {
  1244.         encrypt_mode = type;
  1245.         if (ret == 0 && autoencrypt)
  1246.             encrypt_start_output(type);
  1247.     }
  1248.     return(0);
  1249. }
  1250.  
  1251. /*
  1252.  * Called when a ENCRYPT START command is received.
  1253.  */
  1254. int
  1255. #ifdef CK_ANSIC
  1256. encrypt_start(unsigned char *data, int cnt)
  1257. #else
  1258. encrypt_start(data, cnt) unsigned char *data; int cnt;
  1259. #endif
  1260. {
  1261.     Encryptions *ep;
  1262.  
  1263.     if (!decrypt_mode) {
  1264.         /*
  1265.         * Something is wrong.  We should not get a START
  1266.         * command without having already picked our
  1267.         * decryption scheme.  Send a REQUEST-END to
  1268.         * attempt to clear the channel...
  1269.         */
  1270.         encrypt_send_request_end();
  1271.         printf("Authentication error!\n%s\n",
  1272.                 "Warning, Cannot decrypt input stream!!!");
  1273.         return(-1);
  1274.     }
  1275.  
  1276.     if (ep = finddecryption(decrypt_mode)) {
  1277.         if ( decrypt_input != ep->input ) {
  1278.             decrypt_input = ep->input;
  1279.             EncryptKSGlobalHack->decrypt = decrypt_ks_stream;
  1280.             EncryptKSGlobalHack->decrypt_type = ep->type;
  1281.  
  1282.             if (encrypt_verbose) {
  1283.                 sprintf(dbgbuf, "Input is now decrypted with type %s",
  1284.                          ENCTYPE_NAME(decrypt_mode));           /* safe */
  1285.                 debug(F110,"encrypt_start",dbgbuf,0);
  1286.                 printf("%s\n",dbgbuf);
  1287.             }
  1288. #ifdef DEBUG
  1289.             if (encrypt_debug_mode) {
  1290.                 sprintf(dbgbuf, ">>>Start to decrypt input with type %s",
  1291.                          ENCTYPE_NAME(decrypt_mode));           /* safe */
  1292.                 debug(F110,"ck_crp",dbgbuf,0);
  1293.             }
  1294. #endif
  1295.         }
  1296.     } else {
  1297.         char buf[1024];
  1298.         sprintf(buf, "Warning, Cannot decrypt type %s (%d)!!!",
  1299.                   ENCTYPE_NAME_OK(decrypt_mode)
  1300.                   ? ENCTYPE_NAME(decrypt_mode) : "(unknown)",
  1301.                   decrypt_mode);                                /* safe */
  1302.         printf("Authentication error!\n%s\n",buf);
  1303.         encrypt_send_request_end();
  1304.         return(-1);
  1305.     }
  1306.     return(0);
  1307. }
  1308.  
  1309. int
  1310. #ifdef CK_ANSIC
  1311. encrypt_dont_support(int type)
  1312. #else
  1313. encrypt_dont_support(type) int type;
  1314. #endif
  1315. {
  1316.     i_wont_support_encrypt |= typemask(type);
  1317.     i_wont_support_decrypt |= typemask(type);
  1318.     return(0);
  1319. }
  1320.  
  1321. int
  1322. #ifdef CK_ANSIC
  1323. encrypt_session_key(Session_Key *key, int server)
  1324. #else
  1325. encrypt_session_key(key, server) Session_Key *key; int server;
  1326. #endif
  1327. {
  1328.     Encryptions *ep = encryptions;
  1329.  
  1330.     if (havesessionkey)
  1331.         return(0);
  1332.  
  1333.     havesessionkey = 1;
  1334.  
  1335.     while (ep->type) {
  1336.         debug(F111,"encrypt_session_key",ep->name,ep->type);
  1337.         if (ep->session) {
  1338.             if ((*ep->session)(key, server) < 0) {
  1339.                 i_wont_support_encrypt |= typemask(ep->type);
  1340.                 i_wont_support_decrypt |= typemask(ep->type);
  1341.             }
  1342.         }
  1343.         ++ep;
  1344.     }
  1345.     debug(F111,"encrypt_session_key (done)",ep->name,ep->type);
  1346.     return(0);
  1347. }
  1348.  
  1349. /*
  1350.  * Called when ENCRYPT END is received.
  1351.  */
  1352. int
  1353. #ifdef CK_ANSIC
  1354. encrypt_end(VOID)
  1355. #else
  1356. encrypt_end()
  1357. #endif
  1358. {
  1359.     decrypt_input = NULL;
  1360.     EncryptKSGlobalHack->decrypt = NULL;
  1361.     EncryptKSGlobalHack->decrypt_type = ENCTYPE_ANY;
  1362. #ifdef DEBUG
  1363.     if (encrypt_debug_mode) {
  1364.         sprintf(dbgbuf, ">>>Input is back to clear text");      /* safe */
  1365.         debug(F110,"encrypt_end",dbgbuf,0);
  1366.     }
  1367. #endif
  1368.     if (encrypt_verbose) {
  1369.         sprintf(dbgbuf, "Input is now clear text");             /* safe */
  1370.         debug(F110,"encrypt_end",dbgbuf,0);
  1371.         printf("%s\n",dbgbuf);
  1372.     }
  1373.     return(0);
  1374. }
  1375.  
  1376. /*
  1377.  * Called when ENCRYPT REQUEST-END is received.
  1378.  */
  1379. int
  1380. #ifdef CK_ANSIC
  1381. encrypt_request_end(VOID)
  1382. #else
  1383. encrypt_request_end()
  1384. #endif
  1385. {
  1386.     encrypt_send_end();
  1387.     return(0);
  1388. }
  1389.  
  1390. /*
  1391.  * Called when ENCRYPT REQUEST-START is received.  If we receive
  1392.  * this before a type is picked, then that indicates that the
  1393.  * other side wants us to start encrypting data as soon as we
  1394.  * can.
  1395.  */
  1396. int
  1397. #ifdef CK_ANSIC
  1398. encrypt_request_start(VOID)
  1399. #else
  1400. encrypt_request_start()
  1401. #endif
  1402. {
  1403.     if (encrypt_mode != 0)
  1404.         encrypt_start_output(encrypt_mode);
  1405.     return(0);
  1406. }
  1407.  
  1408. static unsigned char str_keyid[(MAXKEYLEN*2)+5] = {
  1409.     IAC, SB, TELOPT_ENCRYPTION
  1410. };
  1411. _PROTOTYP(int encrypt_keyid,(struct key_info *,unsigned char *,int));
  1412.  
  1413. int
  1414. #ifdef CK_ANSIC
  1415. encrypt_enc_keyid(unsigned char *keyid, int len)
  1416. #else
  1417. encrypt_enc_keyid(keyid, len) unsigned char *keyid; int len;
  1418. #endif
  1419. {
  1420.     return(encrypt_keyid(&ki[1], keyid, len));
  1421. }
  1422.  
  1423. int
  1424. #ifdef CK_ANSIC
  1425. encrypt_dec_keyid(unsigned char *keyid, int len)
  1426. #else
  1427. encrypt_dec_keyid(keyid, len) unsigned char *keyid; int len;
  1428. #endif /* CK_ANSIC */
  1429. {
  1430.     return(encrypt_keyid(&ki[0], keyid, len));
  1431. }
  1432.  
  1433. int
  1434. #ifdef CK_ANSIC
  1435. encrypt_keyid(struct key_info *kp, unsigned char *keyid, int len)
  1436. #else
  1437. encrypt_keyid(kp, keyid, len)
  1438.     struct key_info *kp; unsigned char *keyid; int len;
  1439. #endif
  1440. {
  1441.     Encryptions *ep;
  1442.     int dir = kp->dir;
  1443.     register int ret = 0;
  1444.  
  1445.     if (!(ep = (*kp->getcrypt)(*kp->modep))) {
  1446.         if (len == 0)
  1447.             return(-1);
  1448.         kp->keylen = 0;
  1449.     } else if (len == 0 || len > MAXKEYLEN) {
  1450.         /*
  1451.         * Empty option or Key too long, indicates a failure.
  1452.         */
  1453.         if (kp->keylen == 0)
  1454.             return(-1);
  1455.         kp->keylen = 0;
  1456.         if (ep->keyid)
  1457.             (void)(*ep->keyid)(dir, kp->keyid, &kp->keylen);
  1458.  
  1459.     } else if ((len != kp->keylen) || (memcmp(keyid, kp->keyid, len) != 0)) {
  1460.         /*
  1461.         * Length or contents are different
  1462.         */
  1463.         kp->keylen = len;
  1464.         memcpy(kp->keyid, keyid, len);          /* length < MAXKEYLEN */
  1465.         if (ep->keyid)
  1466.             (void)(*ep->keyid)(dir, kp->keyid, &kp->keylen);
  1467.     } else {
  1468.         if (ep->keyid)
  1469.             ret = (*ep->keyid)(dir, kp->keyid, &kp->keylen);
  1470.         if ((ret == 0) && (dir == DIR_ENCRYPT) && autoencrypt)
  1471.             encrypt_start_output(*kp->modep);
  1472.         return(0);
  1473.     }
  1474.  
  1475.     encrypt_send_keyid(dir, kp->keyid, kp->keylen, 0);
  1476.     return(0);
  1477. }
  1478.  
  1479. int
  1480. #ifdef CK_ANSIC
  1481. encrypt_send_keyid(int dir, unsigned char *keyid, int keylen, int saveit)
  1482. #else
  1483. encrypt_send_keyid(dir, keyid, keylen, saveit)
  1484.      int dir; unsigned char *keyid; int keylen; int saveit;
  1485. #endif
  1486. {
  1487.     unsigned char *strp;
  1488.  
  1489. #ifdef CK_SSL
  1490.     if (TELOPT_SB(TELOPT_START_TLS).start_tls.me_follows)
  1491.         return(0);
  1492. #endif /* CK_SSL */
  1493.  
  1494.     str_keyid[3] = (dir == DIR_ENCRYPT)
  1495.         ? ENCRYPT_ENC_KEYID : ENCRYPT_DEC_KEYID;
  1496.     if (saveit && keylen <= MAXKEYLEN) {
  1497.         struct key_info *kp = &ki[(dir == DIR_ENCRYPT) ? 0 : 1];
  1498.         memcpy(kp->keyid, keyid, keylen);
  1499.         kp->keylen = keylen;
  1500.     }
  1501.  
  1502.     for (strp = &str_keyid[4]; keylen > 0; --keylen) {
  1503.         if ((*strp++ = *keyid++) == IAC)
  1504.             *strp++ = IAC;
  1505.     }
  1506.     *strp++ = IAC;
  1507.     *strp++ = SE;
  1508.  
  1509.     if (deblog || tn_deb || debses) {
  1510.         int i;
  1511.         sprintf(tn_msg,"TELNET SENT SB %s %s ",
  1512.                  TELOPT(TELOPT_ENCRYPTION),
  1513.                  (dir == DIR_ENCRYPT) ? "ENC-KEYID" : "DEC-KEYID"); /* safe */
  1514.         tn_hex(tn_msg,TN_MSG_LEN,&str_keyid[4],strp-str_keyid-2-4);
  1515.         ckstrncat(tn_msg,"IAC SE",TN_MSG_LEN);
  1516.         debug(F100,tn_msg,"",0);
  1517.         if (tn_deb || debses) tn_debug(tn_msg);
  1518.     }
  1519. #ifdef OS2
  1520.     RequestTelnetMutex( SEM_INDEFINITE_WAIT );
  1521. #endif
  1522.     ttol(str_keyid, strp - str_keyid);
  1523. #ifdef OS2
  1524.     ReleaseTelnetMutex();
  1525. #endif
  1526.     return(0);
  1527. }
  1528.  
  1529. VOID
  1530. #ifdef CK_ANSIC
  1531. encrypt_auto(int on)
  1532. #else
  1533. encrypt_auto(on) int on;
  1534. #endif
  1535. {
  1536.     if (on < 0)
  1537.         autoencrypt ^= 1;
  1538.     else
  1539.         autoencrypt = on ? 1 : 0;
  1540. }
  1541.  
  1542. VOID
  1543. #ifdef CK_ANSIC
  1544. decrypt_auto(int on)
  1545. #else
  1546. decrypt_auto(on) int on;
  1547. #endif
  1548. {
  1549.     if (on < 0)
  1550.         autodecrypt ^= 1;
  1551.     else
  1552.         autodecrypt = on ? 1 : 0;
  1553. }
  1554.  
  1555. VOID
  1556. #ifdef CK_ANSIC
  1557. encrypt_start_output(int type)
  1558. #else
  1559. encrypt_start_output(type) int type;
  1560. #endif
  1561. {
  1562.     Encryptions *ep;
  1563.     register unsigned char *p;
  1564.     register int i;
  1565.  
  1566. #ifdef CK_SSL
  1567.     if (TELOPT_SB(TELOPT_START_TLS).start_tls.me_follows)
  1568.         return;
  1569. #endif /* CK_SSL */
  1570.  
  1571.     if (!(ep = findencryption(type))) {
  1572. #ifdef DEBUG
  1573.         if (encrypt_debug_mode) {
  1574.             sprintf(dbgbuf, ">>>Can't encrypt with type %s (%d)\n",
  1575.                      ENCTYPE_NAME_OK(type)
  1576.                      ? ENCTYPE_NAME(type) : "(unknown)",
  1577.                      type);                                     /* safe */
  1578.             debug(F110,"encrypt_start_output",dbgbuf,0);
  1579.         }
  1580. #endif
  1581.         return;
  1582.     }
  1583.     if (ep->start) {
  1584.         i = (*ep->start)(DIR_ENCRYPT, 0);
  1585. #ifdef DEBUG
  1586.         if (encrypt_debug_mode) {
  1587.             sprintf(dbgbuf, ">>>Encrypt start: %s (%d) %s\n",
  1588.                      (i < 0) ? "failed" :
  1589.                      "initial negotiation in progress",
  1590.                      i, ENCTYPE_NAME(type));                    /* safe */
  1591.             debug(F110,"encrypt_start_output",dbgbuf,0);
  1592.         }
  1593. #endif
  1594.         if (i)
  1595.             return;
  1596.     }
  1597.  
  1598.     if ( encrypt_output != ep->output ) {
  1599.         p = str_start;
  1600.         *p++ = IAC;
  1601.         *p++ = SB;
  1602.         *p++ = TELOPT_ENCRYPTION;
  1603.         *p++ = ENCRYPT_START;
  1604.         for (i = 0; i < ki[0].keylen; ++i) {
  1605.             if (( *p++ = ki[0].keyid[i]) == IAC)
  1606.                 *p++ = IAC;
  1607.         }
  1608.         *p++ = IAC;
  1609.         *p++ = SE;
  1610.  
  1611.         if (deblog || tn_deb || debses) {
  1612.             int i;
  1613.             sprintf(tn_msg,"TELNET SENT SB %s START ",
  1614.                      TELOPT(TELOPT_ENCRYPTION));                /* safe */
  1615.             tn_hex(tn_msg,TN_MSG_LEN,&str_start[4],p-str_start-2-4);
  1616.             ckstrncat(tn_msg,"IAC SE",TN_MSG_LEN);
  1617.             debug(F100,tn_msg,"",0);
  1618.             if (tn_deb || debses) tn_debug(tn_msg);
  1619.         }
  1620. #ifdef OS2
  1621.         RequestTelnetMutex( SEM_INDEFINITE_WAIT );
  1622. #endif
  1623.         ttol(str_start, p - str_start);
  1624. #ifdef OS2
  1625.         ReleaseTelnetMutex();
  1626. #endif
  1627.  
  1628.   /*
  1629.    * If we are already encrypting in some mode, then
  1630.    * encrypt the ring (which includes our request) in
  1631.    * the old mode, mark it all as "clear text" and then
  1632.    * switch to the new mode.
  1633.    */
  1634.         encrypt_output = ep->output;
  1635.         EncryptKSGlobalHack->encrypt = encrypt_ks_stream;
  1636.         EncryptKSGlobalHack->encrypt_type = type;
  1637.         encrypt_mode = type;
  1638. #ifdef DEBUG
  1639.         if (encrypt_debug_mode) {
  1640.             sprintf(dbgbuf, ">>>Started to encrypt output with type %s",
  1641.                      ENCTYPE_NAME(type));                       /* safe */
  1642.             debug(F110,"encrypt_start_output",dbgbuf,0);
  1643.         }
  1644. #endif
  1645.         if (encrypt_verbose) {
  1646.             sprintf(dbgbuf, "Output is now encrypted with type %s",
  1647.                      ENCTYPE_NAME(type));                       /* safe */
  1648.             debug(F110,"encrypt_start_output",dbgbuf,0);
  1649.             printf("%s\n",dbgbuf);
  1650.         }
  1651.     }
  1652. }
  1653.  
  1654. VOID
  1655. #ifdef CK_ANSIC
  1656. encrypt_send_end(VOID)
  1657. #else
  1658. encrypt_send_end()
  1659. #endif
  1660. {
  1661. #ifdef CK_SSL
  1662.     if (TELOPT_SB(TELOPT_START_TLS).start_tls.me_follows)
  1663.         return;
  1664. #endif /* CK_SSL */
  1665.  
  1666.     if (!encrypt_output)
  1667.         return;
  1668.  
  1669.     str_end[0] = IAC;
  1670.     str_end[1] = SB;
  1671.     str_end[2] = TELOPT_ENCRYPTION;
  1672.     str_end[3] = ENCRYPT_END;
  1673.     str_end[4] = IAC;
  1674.     str_end[5] = SE;
  1675.  
  1676.     if (deblog || tn_deb || debses) {
  1677.         int i;
  1678.         sprintf(tn_msg,"TELNET SENT SB %s END IAC SE",
  1679.                  TELOPT(TELOPT_ENCRYPTION));                    /* safe */
  1680.         debug(F100,tn_msg,"",0);
  1681.         if (tn_deb || debses) tn_debug(tn_msg);
  1682.     }
  1683. #ifdef OS2
  1684.     RequestTelnetMutex( SEM_INDEFINITE_WAIT );
  1685. #endif
  1686.     ttol(str_end, sizeof(str_end));
  1687. #ifdef OS2
  1688.     ReleaseTelnetMutex();
  1689. #endif
  1690.  
  1691.     encrypt_output = 0;
  1692.     EncryptKSGlobalHack->encrypt = NULL;
  1693.     EncryptKSGlobalHack->encrypt_type = ENCTYPE_ANY;
  1694. #ifdef DEBUG
  1695.     if (encrypt_debug_mode) {
  1696.         sprintf(dbgbuf, ">>>Output is back to clear text");     /* safe */
  1697.         debug(F110,"encrypt_send_end",dbgbuf,0);
  1698.     }
  1699. #endif
  1700.     if (encrypt_verbose) {
  1701.         sprintf(dbgbuf, "Output is now clear text");            /* safe */
  1702.         debug(F110,"encrypt_send_end",dbgbuf,0);
  1703.         printf("%s\n",dbgbuf);
  1704.     }
  1705. }
  1706.  
  1707. VOID
  1708. #ifdef CK_ANSIC
  1709. encrypt_send_request_start(VOID)
  1710. #else
  1711. encrypt_send_request_start()
  1712. #endif
  1713. {
  1714.     register unsigned char *p;
  1715.     register int i;
  1716.  
  1717. #ifdef CK_SSL
  1718.     if (TELOPT_SB(TELOPT_START_TLS).start_tls.me_follows)
  1719.         return;
  1720. #endif /* CK_SSL */
  1721.  
  1722.     p = str_start;
  1723.     *p++ = IAC;
  1724.     *p++ = SB;
  1725.     *p++ = TELOPT_ENCRYPTION;
  1726.     *p++ = ENCRYPT_REQSTART;
  1727.     for (i = 0; i < ki[1].keylen; ++i) {
  1728.         if (( *p++ = ki[1].keyid[i]) == IAC)
  1729.             *p++ = IAC;
  1730.     }
  1731.     *p++ = IAC;
  1732.     *p++ = SE;
  1733.  
  1734.     if (deblog || tn_deb || debses) {
  1735.         int i;
  1736.         sprintf(tn_msg,"TELNET SENT SB %s REQUEST-START ",
  1737.                  TELOPT(TELOPT_ENCRYPTION));                    /* safe */
  1738.         tn_hex(tn_msg,TN_MSG_LEN,&str_start[4],p-str_start-2-4);
  1739.         ckstrncat(tn_msg,"IAC SE",TN_MSG_LEN);
  1740.         debug(F100,tn_msg,"",0);
  1741.         if (tn_deb || debses) tn_debug(tn_msg);
  1742.     }
  1743. #ifdef OS2
  1744.     RequestTelnetMutex( SEM_INDEFINITE_WAIT );
  1745. #endif
  1746.     ttol(str_start, p - str_start);
  1747. #ifdef OS2
  1748.     ReleaseTelnetMutex();
  1749. #endif
  1750.  
  1751.     if (encrypt_debug_mode) {
  1752.         sprintf(dbgbuf, ">>>Request input to be encrypted\n");  /* safe */
  1753.         debug(F110,"encrypt_send_request_start",dbgbuf,0);
  1754.     }
  1755. }
  1756.  
  1757. VOID
  1758. #ifdef CK_ANSIC
  1759. encrypt_send_request_end(VOID)
  1760. #else
  1761. encrypt_send_request_end()
  1762. #endif
  1763. {
  1764. #ifdef CK_SSL
  1765.     if (TELOPT_SB(TELOPT_START_TLS).start_tls.me_follows)
  1766.         return;
  1767. #endif /* CK_SSL */
  1768.  
  1769.     str_end[0] = IAC;
  1770.     str_end[1] = SB;
  1771.     str_end[2] = TELOPT_ENCRYPTION;
  1772.     str_end[3] = ENCRYPT_REQEND;
  1773.     str_end[4] = IAC;
  1774.     str_end[5] = SE;
  1775.  
  1776.     if (deblog || tn_deb || debses) {
  1777.         int i;
  1778.         sprintf(tn_msg,"TELNET SENT SB %s REQEND IAC SE",
  1779.                  TELOPT(TELOPT_ENCRYPTION));                    /* safe */
  1780.         debug(F100,tn_msg,"",0);
  1781.         if (tn_deb || debses) tn_debug(tn_msg);
  1782.     }
  1783. #ifdef OS2
  1784.     RequestTelnetMutex( SEM_INDEFINITE_WAIT );
  1785. #endif
  1786.     ttol(str_end, sizeof(str_end));
  1787. #ifdef OS2
  1788.     ReleaseTelnetMutex();
  1789. #endif
  1790.  
  1791.     if (encrypt_debug_mode) {
  1792.         sprintf(dbgbuf, ">>>Request input to be clear text\n"); /* safe */
  1793.         debug(F110,"encrypt_send_request_end",dbgbuf,0);
  1794.     }
  1795. }
  1796.  
  1797. int
  1798. #ifdef CK_ANSIC
  1799. encrypt_is_encrypting(VOID)
  1800. #else
  1801. encrypt_is_encrypting()
  1802. #endif
  1803. {
  1804.     if (encrypt_output)
  1805.         return 1;
  1806.     return 0;
  1807. }
  1808.  
  1809. int
  1810. #ifdef CK_ANSIC
  1811. encrypt_is_decrypting(VOID)
  1812. #else
  1813. encrypt_is_decrypting()
  1814. #endif
  1815. {
  1816.     if (decrypt_input)
  1817.         return 1;
  1818.     return 0;
  1819. }
  1820.  
  1821. #ifdef DEBUG
  1822. void
  1823. encrypt_debug(mode)
  1824.      int mode;
  1825. {
  1826.     encrypt_debug_mode = mode;
  1827. }
  1828. #endif
  1829.  
  1830. #ifdef CK_DES
  1831. /*-
  1832.  * Copyright (c) 1991, 1993
  1833.  *      The Regents of the University of California.  All rights reserved.
  1834.  *
  1835.  * Redistribution and use in source and binary forms, with or without
  1836.  * modification, are permitted provided that the following conditions
  1837.  * are met:
  1838.  * 1. Redistributions of source code must retain the above copyright
  1839.  *    notice, this list of conditions and the following disclaimer.
  1840.  * 2. Redistributions in binary form must reproduce the above copyright
  1841.  *    notice, this list of conditions and the following disclaimer in the
  1842.  *    documentation and/or other materials provided with the distribution.
  1843.  * 3. All advertising materials mentioning features or use of this software
  1844.  *    must display the following acknowledgement:
  1845.  *      This product includes software developed by the University of
  1846.  *      California, Berkeley and its contributors.
  1847.  * 4. Neither the name of the University nor the names of its contributors
  1848.  *    may be used to endorse or promote products derived from this software
  1849.  *    without specific prior written permission.
  1850.  *
  1851.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  1852.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  1853.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  1854.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  1855.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  1856.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  1857.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  1858.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  1859.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  1860.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  1861.  * SUCH DAMAGE.
  1862.  */
  1863.  
  1864. /* based on @(#)enc_des.c       8.1 (Berkeley) 6/4/93 */
  1865.  
  1866. #define CFB     0
  1867. #define OFB     1
  1868.  
  1869. #define NO_SEND_IV      1
  1870. #define NO_RECV_IV      2
  1871. #define NO_KEYID        4
  1872. #define IN_PROGRESS     (NO_SEND_IV|NO_RECV_IV|NO_KEYID)
  1873. #define SUCCESS         0
  1874. #define xFAILED         -1
  1875.  
  1876. Schedule test_sched;
  1877.  
  1878. struct des_stinfo {
  1879.     Block               str_output;
  1880.     Block               str_feed;
  1881.     Block               str_iv;
  1882.     Block               str_ikey;
  1883. #ifdef MIT_CURRENT
  1884.     unsigned char       str_keybytes[8];
  1885.     krb5_keyblock       str_key;
  1886. #else /* MIT_CURRENT */
  1887.     Schedule            str_sched;
  1888.     int                 str_index;
  1889. #endif /* MIT_CURRENT */
  1890.     int                 str_flagshift;
  1891. };
  1892.  
  1893. struct des_fb {
  1894. #ifndef MIT_CURRENT
  1895.     Block krbdes_key;
  1896.     Schedule krbdes_sched;
  1897. #endif /* MIT_CURRENT */
  1898.     Block temp_feed;
  1899.     unsigned char fb_feed[64];
  1900.     int need_start;
  1901.     int state[2];
  1902.     int keyid[2];
  1903.     int once;
  1904. #ifdef MIT_CURRENT
  1905.     int validkey;
  1906. #endif /* MIT_CURRENT */
  1907.     struct des_stinfo  streams[2];
  1908. };
  1909. static struct des_fb des_fb[2];
  1910.  
  1911. struct des3_stinfo {
  1912.     Block               str_output;
  1913.     Block               str_feed;
  1914.     Block               str_iv;
  1915.     Block               str_ikey[3];
  1916.     Schedule            str_sched[3];
  1917.     int                 str_index;
  1918.     int                 str_flagshift;
  1919. };
  1920.  
  1921. struct des3_fb {
  1922. #ifndef MIT_CURRENT
  1923.     Block krbdes_key[3];
  1924.     Schedule krbdes_sched[3];
  1925. #endif /* MIT_CURRENT */
  1926.     Block temp_feed;
  1927.     unsigned char fb_feed[64];
  1928.     int need_start;
  1929.     int state[2];
  1930.     int keyid[2];
  1931.     int once;
  1932. #ifdef MIT_CURRENT
  1933.     int validkey;
  1934. #endif /* MIT_CURRENT */
  1935.     struct des3_stinfo streams[2];
  1936. };
  1937. static struct des3_fb des3_fb[2];
  1938.  
  1939. struct keyidlist {
  1940.     char        *keyid;
  1941.     int keyidlen;
  1942.     char        *key;
  1943.     int keylen;
  1944.     int flags;
  1945. } keyidlist [] = {
  1946.     { "\0", 1, 0, 0, 0 },               /* default key of zero */
  1947.     { 0, 0, 0, 0, 0 }
  1948. };
  1949.  
  1950. #define KEYFLAG_MASK    03
  1951.  
  1952. #define KEYFLAG_NOINIT  00
  1953. #define KEYFLAG_INIT    01
  1954. #define KEYFLAG_OK      02
  1955. #define KEYFLAG_BAD     03
  1956.  
  1957. #define KEYFLAG_SHIFT   2
  1958.  
  1959. #define SHIFT_VAL(a,b)  (KEYFLAG_SHIFT*((a)+((b)*2)))
  1960.  
  1961. #define FB64_IV         1
  1962. #define FB64_IV_OK      2
  1963. #define FB64_IV_BAD     3
  1964. #define FB64_CHALLENGE  4
  1965. #define FB64_RESPONSE   5
  1966.  
  1967. void fb64_stream_iv P((Block, struct des_stinfo *));
  1968. void fb64_init P((struct des_fb *));
  1969. static int fb64_start P((struct des_fb *, int, int));
  1970. int fb64_is P((unsigned char *, int, struct des_fb *));
  1971. int fb64_reply P((unsigned char *, int, struct des_fb *));
  1972. static int fb64_session P((Session_Key *, int, struct des_fb *));
  1973. void fb64_stream_key P((Block, struct des_stinfo *));
  1974. int fb64_keyid P((int, unsigned char *, int *, struct des_fb *));
  1975.  
  1976. #ifdef MIT_CURRENT
  1977. static void
  1978. #ifdef CK_ANSIC
  1979. ecb_encrypt(struct des_stinfo *stp, Block in, Block out)
  1980. #else /* CKANSIC */
  1981. ecb_encrypt(stp, in, out)
  1982.     struct des_stinfo *stp;
  1983.     Block in;
  1984.     Block out;
  1985. #endif /* CK_ANSIC */
  1986. {
  1987.     krb5_error_code code;
  1988.     krb5_data din;
  1989.     krb5_enc_data dout;
  1990.  
  1991.     din.length = 8;
  1992.     din.data = in;
  1993.  
  1994.     dout.ciphertext.length = 8;
  1995.     dout.ciphertext.data = out;
  1996.     dout.enctype = ENCTYPE_UNKNOWN;
  1997.  
  1998. #ifdef CRYPT_DLL
  1999.     code = krb5_c_encrypt(*p_k5_context, &stp->str_key, 0, 0,
  2000.                            &din, &dout);
  2001. #else /* CRYPT_DLL */
  2002.     code = krb5_c_encrypt(k5_context, &stp->str_key, 0, 0,
  2003.                            &din, &dout);
  2004. #endif /* CRYPT_DLL */
  2005.     /* XXX I'm not sure what to do if this fails */
  2006.     if (code)
  2007.         com_err("libtelnet", code, "encrypting stream data");
  2008. }
  2009. #endif /* MIT_CURRENT */
  2010.  
  2011. void
  2012. cfb64_init(server)
  2013.     int server;
  2014. {
  2015.     fb64_init(&des_fb[CFB]);
  2016.     des_fb[CFB].fb_feed[4] = ENCTYPE_DES_CFB64;
  2017.     des_fb[CFB].streams[0].str_flagshift = SHIFT_VAL(0, CFB);
  2018.     des_fb[CFB].streams[1].str_flagshift = SHIFT_VAL(1, CFB);
  2019. }
  2020.  
  2021. void
  2022. ofb64_init(server)
  2023.     int server;
  2024. {
  2025.     fb64_init(&des_fb[OFB]);
  2026.     des_fb[OFB].fb_feed[4] = ENCTYPE_DES_OFB64;
  2027.     des_fb[CFB].streams[0].str_flagshift = SHIFT_VAL(0, OFB);
  2028.     des_fb[CFB].streams[1].str_flagshift = SHIFT_VAL(1, OFB);
  2029. }
  2030.  
  2031. void
  2032. fb64_init(fbp)
  2033.     register struct des_fb *fbp;
  2034. {
  2035.     memset((void *)fbp, 0, sizeof(*fbp));
  2036.     fbp->state[0] = fbp->state[1] = xFAILED;
  2037.     fbp->fb_feed[0] = IAC;
  2038.     fbp->fb_feed[1] = SB;
  2039.     fbp->fb_feed[2] = TELOPT_ENCRYPTION;
  2040.     fbp->fb_feed[3] = ENCRYPT_IS;
  2041. }
  2042.  
  2043. /*
  2044.  * Returns:
  2045.  *      -1: some error.  Negotiation is done, encryption not ready.
  2046.  *       0: Successful, initial negotiation all done.
  2047.  *       1: successful, negotiation not done yet.
  2048.  *       2: Not yet.  Other things (like getting the key from
  2049.  *          Kerberos) have to happen before we can continue.
  2050.  */
  2051. int
  2052. cfb64_start(dir, server)
  2053.     int dir;
  2054.     int server;
  2055. {
  2056.     return(fb64_start(&des_fb[CFB], dir, server));
  2057. }
  2058. int
  2059. ofb64_start(dir, server)
  2060.     int dir;
  2061.     int server;
  2062. {
  2063.     return(fb64_start(&des_fb[OFB], dir, server));
  2064. }
  2065.  
  2066. static int
  2067. fb64_start(fbp, dir, server)
  2068.     struct des_fb *fbp;
  2069.     int dir;
  2070.     int server;
  2071. {
  2072.     int x;
  2073.     unsigned char *p;
  2074.     register int state;
  2075.  
  2076.     switch (dir) {
  2077.     case DIR_DECRYPT:
  2078.         /*
  2079.         * This is simply a request to have the other side
  2080.         * start output (our input).  He will negotiate an
  2081.         * IV so we need not look for it.
  2082.         */
  2083.         state = fbp->state[dir-1];
  2084.         if (state == xFAILED)
  2085.             state = IN_PROGRESS;
  2086.         break;
  2087.  
  2088.     case DIR_ENCRYPT:
  2089.         state = fbp->state[dir-1];
  2090.         if (state == xFAILED)
  2091.             state = IN_PROGRESS;
  2092.         else if ((state & NO_SEND_IV) == 0)
  2093.             break;
  2094.  
  2095. #ifdef MIT_CURRENT
  2096.         if (!fbp->validkey) {
  2097.             fbp->need_start = 1;
  2098.             break;
  2099.         }
  2100. #else /* MIT_CURRENT */
  2101.         if (!VALIDKEY(fbp->krbdes_key)) {
  2102.             fbp->need_start = 1;
  2103.             break;
  2104.         }
  2105. #endif /* MIT_CURRENT */
  2106.         state &= ~NO_SEND_IV;
  2107.         state |= NO_RECV_IV;
  2108.         /*
  2109.         * Create a random feed and send it over.
  2110.         */
  2111. #ifdef MIT_CURRENT
  2112.         {
  2113.             krb5_data d;
  2114.             krb5_error_code code;
  2115.  
  2116.             d.data = fbp->temp_feed;
  2117.             d.length = sizeof(fbp->temp_feed);
  2118.  
  2119. #ifdef CRYPT_DLL
  2120.             if (code = krb5_c_random_make_octets(*p_k5_context,&d))
  2121.                 return(xFAILED);
  2122. #else /* CRYPT_DLL */
  2123.             if (code = krb5_c_random_make_octets(k5_context,&d))
  2124.                 return(xFAILED);
  2125. #endif /* CRYPT_DLL */
  2126.         }
  2127.  
  2128. #else /* MIT_CURRENT */
  2129.         des_new_random_key(fbp->temp_feed);
  2130.         des_ecb_encrypt(fbp->temp_feed, fbp->temp_feed,
  2131.                          fbp->krbdes_sched, 1);
  2132. #endif /* MIT_CURRENT */
  2133.         p = fbp->fb_feed + 3;
  2134.         *p++ = ENCRYPT_IS;
  2135.         p++;
  2136.         *p++ = FB64_IV;
  2137.         for (x = 0; x < sizeof(Block); ++x) {
  2138.             if (( *p++ = fbp->temp_feed[x]) == IAC)
  2139.                 *p++ = IAC;
  2140.         }
  2141.         *p++ = IAC;
  2142.         *p++ = SE;
  2143.  
  2144.         if (deblog || tn_deb || debses) {
  2145.             int i;
  2146.             sprintf(tn_msg,
  2147.                      "TELNET SENT SB %s IS %s FB64_IV ",
  2148.                      TELOPT(fbp->fb_feed[2]),
  2149.                      enctype_names[fbp->fb_feed[4]]);                   /* safe */
  2150.             tn_hex(tn_msg,TN_MSG_LEN,&fbp->fb_feed[6],(p-fbp->fb_feed)-2-6);
  2151.             ckstrncat(tn_msg,"IAC SE",TN_MSG_LEN);
  2152.             debug(F100,tn_msg,"",0);
  2153.             if (tn_deb || debses) tn_debug(tn_msg);
  2154.         }
  2155. #ifdef OS2
  2156.         RequestTelnetMutex( SEM_INDEFINITE_WAIT );
  2157. #endif
  2158.         ttol(fbp->fb_feed, p - fbp->fb_feed);
  2159. #ifdef OS2
  2160.         ReleaseTelnetMutex();
  2161. #endif
  2162.         break;
  2163.     default:
  2164.         return(xFAILED);
  2165.     }
  2166.     return(fbp->state[dir-1] = state);
  2167. }
  2168.  
  2169. /*
  2170.  * Returns:
  2171.  *      -1: some error.  Negotiation is done, encryption not ready.
  2172.  *       0: Successful, initial negotiation all done.
  2173.  *       1: successful, negotiation not done yet.
  2174.  */
  2175. int
  2176. cfb64_is(data, cnt)
  2177.     unsigned char *data;
  2178.     int cnt;
  2179. {
  2180.     return(fb64_is(data, cnt, &des_fb[CFB]));
  2181. }
  2182.  
  2183. int
  2184. ofb64_is(data, cnt)
  2185.     unsigned char *data;
  2186.     int cnt;
  2187. {
  2188.     return(fb64_is(data, cnt, &des_fb[OFB]));
  2189. }
  2190.  
  2191. int
  2192. fb64_is(data, cnt, fbp)
  2193.     unsigned char *data;
  2194.     int cnt;
  2195.     struct des_fb *fbp;
  2196. {
  2197.     unsigned char *p;
  2198.     register int state = fbp->state[DIR_DECRYPT-1];
  2199.  
  2200.     if (cnt-- < 1)
  2201.         goto failure;
  2202.  
  2203. #ifdef CK_SSL
  2204.     if (!TELOPT_SB(TELOPT_START_TLS).start_tls.me_follows)
  2205. #endif /* CK_SSL */
  2206.     switch (*data++) {
  2207.     case FB64_IV:
  2208.         if (cnt != sizeof(Block)) {
  2209. #ifdef DEBUG
  2210.             if (encrypt_debug_mode)
  2211.                 printf("CFB64: initial vector failed on size\r\n");
  2212. #endif
  2213.             state = xFAILED;
  2214.             goto failure;
  2215.         }
  2216.  
  2217. #ifdef DEBUG
  2218.         if (encrypt_debug_mode) {
  2219.             printf("CFB64: initial vector received\r\n");
  2220.             printf("Initializing Decrypt stream\r\n");
  2221.         }
  2222. #endif
  2223.         fb64_stream_iv((void *)data, &fbp->streams[DIR_DECRYPT-1]);
  2224.  
  2225.         p = fbp->fb_feed + 3;
  2226.         *p++ = ENCRYPT_REPLY;
  2227.         p++;
  2228.         *p++ = FB64_IV_OK;
  2229.         *p++ = IAC;
  2230.         *p++ = SE;
  2231.  
  2232.         if (deblog || tn_deb || debses) {
  2233.             int i;
  2234.             sprintf(tn_msg,
  2235.                      "TELNET SENT SB %s REPLY %s FB64_IV_OK ",
  2236.                      TELOPT(fbp->fb_feed[2]),
  2237.                      enctype_names[fbp->fb_feed[4]]);           /* safe */
  2238.             tn_hex(tn_msg,TN_MSG_LEN,&fbp->fb_feed[6],(p-fbp->fb_feed)-2-6);
  2239.             ckstrncat(tn_msg,"IAC SE",TN_MSG_LEN);
  2240.             debug(F100,tn_msg,"",0);
  2241.             if (tn_deb || debses) tn_debug(tn_msg);
  2242.         }
  2243. #ifdef OS2
  2244.         RequestTelnetMutex( SEM_INDEFINITE_WAIT );
  2245. #endif
  2246.         ttol(fbp->fb_feed, p - fbp->fb_feed);
  2247. #ifdef OS2
  2248.         ReleaseTelnetMutex();
  2249. #endif
  2250.         state = IN_PROGRESS;
  2251.         break;
  2252.  
  2253.     default:
  2254. #if 0
  2255.         if (encrypt_debug_mode) {
  2256.             printf("Unknown option type: %d\r\n", *(data-1));
  2257.             printf("\r\n");
  2258.         }
  2259. #endif
  2260.         /* FALL THROUGH */
  2261.       failure:
  2262.         /*
  2263.         * We failed.  Send an FB64_IV_BAD option
  2264.         * to the other side so it will know that
  2265.         * things failed.
  2266.         */
  2267.         p = fbp->fb_feed + 3;
  2268.         *p++ = ENCRYPT_REPLY;
  2269.         p++;
  2270.         *p++ = FB64_IV_BAD;
  2271.         *p++ = IAC;
  2272.         *p++ = SE;
  2273.  
  2274.         if (deblog || tn_deb || debses) {
  2275.             int i;
  2276.             sprintf(tn_msg,
  2277.                      "TELNET SENT SB %s REPLY %s FB64_IV_BAD ",
  2278.                      TELOPT(fbp->fb_feed[2]),
  2279.                      enctype_names[fbp->fb_feed[4]]);           /* safe */
  2280.             tn_hex(tn_msg,TN_MSG_LEN,&fbp->fb_feed[6],(p-fbp->fb_feed)-2-6);
  2281.             ckstrncat(tn_msg,"IAC SE",TN_MSG_LEN);
  2282.             debug(F100,tn_msg,"",0);
  2283.             if (tn_deb || debses) tn_debug(tn_msg);
  2284.         }
  2285. #ifdef OS2
  2286.         RequestTelnetMutex( SEM_INDEFINITE_WAIT );
  2287. #endif
  2288.         ttol(fbp->fb_feed, p - fbp->fb_feed);
  2289. #ifdef OS2
  2290.         ReleaseTelnetMutex();
  2291. #endif
  2292.         break;
  2293.     }
  2294.     return(fbp->state[DIR_DECRYPT-1] = state);
  2295. }
  2296.  
  2297. /*
  2298.  * Returns:
  2299.  *      -1: some error.  Negotiation is done, encryption not ready.
  2300.  *       0: Successful, initial negotiation all done.
  2301.  *       1: successful, negotiation not done yet.
  2302.  */
  2303. int
  2304. cfb64_reply(data, cnt)
  2305.     unsigned char *data;
  2306.     int cnt;
  2307. {
  2308.     return(fb64_reply(data, cnt, &des_fb[CFB]));
  2309. }
  2310. int
  2311. ofb64_reply(data, cnt)
  2312.     unsigned char *data;
  2313.     int cnt;
  2314. {
  2315.     return(fb64_reply(data, cnt, &des_fb[OFB]));
  2316. }
  2317.  
  2318.  
  2319. int
  2320. fb64_reply(data, cnt, fbp)
  2321.     unsigned char *data;
  2322.     int cnt;
  2323.     struct des_fb *fbp;
  2324. {
  2325.     register int state = fbp->state[DIR_ENCRYPT-1];
  2326.  
  2327.     if (cnt-- < 1)
  2328.         goto failure;
  2329.  
  2330.     switch (*data++) {
  2331.     case FB64_IV_OK:
  2332.         fb64_stream_iv(fbp->temp_feed, &fbp->streams[DIR_ENCRYPT-1]);
  2333.         if (state == xFAILED)
  2334.             state = IN_PROGRESS;
  2335.         state &= ~NO_RECV_IV;
  2336.         encrypt_send_keyid(DIR_ENCRYPT, (unsigned char *)"\0", 1, 1);
  2337.         break;
  2338.  
  2339.     case FB64_IV_BAD:
  2340.         memset(fbp->temp_feed, 0, sizeof(Block));
  2341.         fb64_stream_iv(fbp->temp_feed, &fbp->streams[DIR_ENCRYPT-1]);
  2342.         state = xFAILED;
  2343.         break;
  2344.  
  2345.     default:
  2346. #if 0
  2347.         if (encrypt_debug_mode) {
  2348.             printf("Unknown option type: %d\r\n", data[-1]);
  2349.             printf("\r\n");
  2350.         }
  2351. #endif
  2352.         /* FALL THROUGH */
  2353.       failure:
  2354.         state = xFAILED;
  2355.         break;
  2356.     }
  2357.     return(fbp->state[DIR_ENCRYPT-1] = state);
  2358. }
  2359.  
  2360. int
  2361. cfb64_session(key, server)
  2362.     Session_Key *key;
  2363.     int server;
  2364. {
  2365.     return(fb64_session(key, server, &des_fb[CFB]));
  2366. }
  2367.  
  2368. int
  2369. ofb64_session(key, server)
  2370.     Session_Key *key;
  2371.     int server;
  2372. {
  2373.     return(fb64_session(key, server, &des_fb[OFB]));
  2374. }
  2375.  
  2376. static int
  2377. fb64_session(key, server, fbp)
  2378.     Session_Key *key;
  2379.     int server;
  2380.     struct des_fb *fbp;
  2381. {
  2382.     int rc=0;
  2383.     int use2keys;
  2384.     struct des_stinfo * s_stream;
  2385.     struct des_stinfo * c_stream;
  2386.  
  2387.     if(server) {
  2388.         s_stream = &fbp->streams[DIR_ENCRYPT-1];
  2389.         c_stream = &fbp->streams[DIR_DECRYPT-1];
  2390.     }
  2391.     else {
  2392.         s_stream = &fbp->streams[DIR_DECRYPT-1];
  2393.         c_stream = &fbp->streams[DIR_ENCRYPT-1];
  2394.     }
  2395.  
  2396.     if (!key || key->length < sizeof(Block)) {
  2397.         CHAR buf[80];
  2398.         sprintf(buf,"Can't set DES session key (%d < %d)",
  2399.                 key ? key->length : 0, sizeof(Block));          /* safe */
  2400. #ifdef DEBUG
  2401.         if (encrypt_debug_mode)
  2402.             printf("%s\r\n",buf);
  2403. #endif
  2404.         debug(F110,"fb64_session",buf,0);
  2405.         return(-1);
  2406.     }
  2407.     use2keys = (key->type == SK_DES ||
  2408.                  key->length < 2 * sizeof(Block)) ? 0 : 1;
  2409. #ifdef MIT_CURRENT
  2410.     if(use2keys) {
  2411.         memcpy((void *) fbp->keybytes,
  2412.                  (void *) (key->data + sizeof(Block)), sizeof(Block));
  2413.         des_fixup_key_parity(fbp->);
  2414.         fb64_stream_key(fbp->krbdes_key, s_stream);
  2415.     }
  2416.  
  2417.     memcpy((void *)fbp->krbdes_key, (void *)key->data, sizeof(Block));
  2418.     if (key->type != SK_DES)
  2419.         des_fixup_key_parity(fbp->krbdes_key);
  2420.  
  2421.     if(!use2keys)
  2422.         fb64_stream_key(fbp->krbdes_key, s_stream);
  2423.     fb64_stream_key(fbp->krbdes_key, c_stream);
  2424.     fbp->validkey = 1;
  2425.  
  2426.     fb64_stream_key(key->data, &fbp->streams[DIR_ENCRYPT-1]);
  2427.     fb64_stream_key(key->data, &fbp->streams[DIR_DECRYPT-1]);
  2428. #else /* MIT_CURRENT */
  2429.     if(use2keys) {
  2430.         memcpy((void *) fbp->krbdes_key,
  2431.                  (void *) (key->data + sizeof(Block)), sizeof(Block));
  2432.         des_fixup_key_parity(fbp->krbdes_key);
  2433.         fb64_stream_key(fbp->krbdes_key, s_stream);
  2434.     }
  2435.  
  2436.     memcpy((void *)fbp->krbdes_key, (void *)key->data, sizeof(Block));
  2437.     if (key->type != SK_DES)
  2438.         des_fixup_key_parity(fbp->krbdes_key);
  2439.  
  2440.     if(!use2keys)
  2441.         fb64_stream_key(fbp->krbdes_key, s_stream);
  2442.     fb64_stream_key(fbp->krbdes_key, c_stream);
  2443.  
  2444.     if (fbp->once == 0) {
  2445.         des_set_random_generator_seed(fbp->krbdes_key);
  2446.         fbp->once = 1;
  2447.     }
  2448.  
  2449.     memset(fbp->krbdes_sched,0,sizeof(Schedule));
  2450.     hexdump("fb64_session_key",fbp->krbdes_key,8);
  2451.  
  2452.     rc = des_key_sched(fbp->krbdes_key, fbp->krbdes_sched);
  2453.     if ( rc == -1 ) {
  2454.         printf("?Invalid DES key specified for encryption\n");
  2455.         debug(F110,"fb64_session_key",
  2456.                "invalid DES Key specified for encryption",0);
  2457.     } else if ( rc == -2 ) {
  2458.         printf("?Weak DES key specified for encryption\n");
  2459.         debug(F110,"fb64_session_key",
  2460.                "weak DES Key specified for encryption",0);
  2461.     } else if ( rc != 0 ) {
  2462.         printf("?Key Schedule not created by encryption\n");
  2463.         debug(F110,"fb64_session_key",
  2464.                "Key Schedule not created by encryption",0);
  2465.     }
  2466.  
  2467.     hexdump("fb64_session_key schedule",fbp->krbdes_sched,8*16);
  2468. #endif /* MIT_CURRENT */
  2469.     /*
  2470.     * Now look to see if krbdes_start() was was waiting for
  2471.     * the key to show up.  If so, go ahead an call it now
  2472.     * that we have the key.
  2473.     */
  2474.     if (fbp->need_start) {
  2475.         fbp->need_start = 0;
  2476.         fb64_start(fbp, DIR_ENCRYPT, server);
  2477.     }
  2478.     return(0);
  2479. }
  2480.  
  2481. /*
  2482.  * We only accept a keyid of 0.  If we get a keyid of
  2483.  * 0, then mark the state as SUCCESS.
  2484.  */
  2485. int
  2486. cfb64_keyid(dir, kp, lenp)
  2487.     int dir, *lenp;
  2488.     unsigned char *kp;
  2489. {
  2490.     return(fb64_keyid(dir, kp, lenp, &des_fb[CFB]));
  2491. }
  2492.  
  2493. int
  2494. ofb64_keyid(dir, kp, lenp)
  2495.     int dir, *lenp;
  2496.     unsigned char *kp;
  2497. {
  2498.     return(fb64_keyid(dir, kp, lenp, &des_fb[OFB]));
  2499. }
  2500.  
  2501. int
  2502. fb64_keyid(dir, kp, lenp, fbp)
  2503.     int dir, *lenp;
  2504.     unsigned char *kp;
  2505.     struct des_fb *fbp;
  2506. {
  2507.     register int state = fbp->state[dir-1];
  2508.  
  2509.     if (*lenp != 1 || (*kp != '\0')) {
  2510.         *lenp = 0;
  2511.         return(state);
  2512.     }
  2513.  
  2514.     if (state == xFAILED)
  2515.         state = IN_PROGRESS;
  2516.  
  2517.     state &= ~NO_KEYID;
  2518.  
  2519.     return(fbp->state[dir-1] = state);
  2520. }
  2521.  
  2522. #if 0
  2523. void
  2524. fb64_printsub(data, cnt, buf, buflen, type)
  2525.     unsigned char *data, *buf, *type;
  2526.     int cnt, buflen;
  2527. {
  2528.     char lbuf[64];
  2529.     register int i;
  2530.     char *cp;
  2531.  
  2532.     buf[buflen-1] = '\0';               /* make sure it's NULL terminated */
  2533.     buflen -= 1;
  2534.  
  2535.     switch(data[2]) {
  2536.     case FB64_IV:
  2537.         sprintf(lbuf, "%s_IV", type);
  2538.         cp = lbuf;
  2539.         goto common;
  2540.  
  2541.     case FB64_IV_OK:
  2542.         sprintf(lbuf, "%s_IV_OK", type);
  2543.         cp = lbuf;
  2544.         goto common;
  2545.  
  2546.     case FB64_IV_BAD:
  2547.         sprintf(lbuf, "%s_IV_BAD", type);
  2548.         cp = lbuf;
  2549.         goto common;
  2550.  
  2551.     case FB64_CHALLENGE:
  2552.         sprintf(lbuf, "%s_CHALLENGE", type);
  2553.         cp = lbuf;
  2554.         goto common;
  2555.  
  2556.     case FB64_RESPONSE:
  2557.         sprintf(lbuf, "%s_RESPONSE", type);
  2558.         cp = lbuf;
  2559.         goto common;
  2560.  
  2561.     default:
  2562.         sprintf(lbuf, " %d (unknown)", data[2]);
  2563.         cp = lbuf;
  2564.       common:
  2565.         for (; (buflen > 0) && (*buf = *cp++); buf++)
  2566.             buflen--;
  2567.         for (i = 3; i < cnt; i++) {
  2568.             sprintf(lbuf, " %d", data[i]);
  2569.             for (cp = lbuf; (buflen > 0) && (*buf = *cp++); buf++)
  2570.                 buflen--;
  2571.         }
  2572.         break;
  2573.     }
  2574. }
  2575.  
  2576. void
  2577. cfb64_printsub(data, cnt, buf, buflen)
  2578.     unsigned char *data, *buf;
  2579.     int cnt, buflen;
  2580. {
  2581.     fb64_printsub(data, cnt, buf, buflen, "CFB64");
  2582. }
  2583.  
  2584. void
  2585. ofb64_printsub(data, cnt, buf, buflen)
  2586.     unsigned char *data, *buf;
  2587.     int cnt, buflen;
  2588. {
  2589.     fb64_printsub(data, cnt, buf, buflen, "OFB64");
  2590. }
  2591. #endif
  2592.  
  2593. void
  2594. fb64_stream_iv(seed, stp)
  2595.     Block seed;
  2596.     register struct des_stinfo *stp;
  2597. {
  2598.     int rc=0;
  2599.  
  2600.     memcpy(stp->str_iv,     seed, sizeof(Block));
  2601.     memcpy(stp->str_output, seed, sizeof(Block));
  2602.  
  2603.     memset(stp->str_sched,0,sizeof(Schedule));
  2604.  
  2605.     hexdump("fb64_stream_iv",stp->str_ikey,8);
  2606.  
  2607. #ifndef MIT_CURRENT
  2608.     rc = des_key_sched(stp->str_ikey, stp->str_sched);
  2609.     if ( rc == -1 ) {
  2610.         printf("?Invalid DES key specified for encryption\r\n");
  2611.         debug(F110,"fb64_stream_iv",
  2612.                "invalid DES Key specified for encryption",0);
  2613.     } else if ( rc == -2 ) {
  2614.         printf("?Weak DES key specified for encryption\r\n");
  2615.         debug(F110,"fb64_stream_iv",
  2616.                "weak DES Key specified for encryption",0);
  2617.     } else if ( rc != 0 ) {
  2618.         printf("?Key Schedule not created by encryption\r\n");
  2619.         debug(F110,"fb64_stream_iv",
  2620.                "Key Schedule not created by encryption",0);
  2621.     }
  2622.     hexdump("fb64_stream_iv schedule",stp->str_sched,8*16);
  2623. #endif /* MIT_CURRENT */
  2624.  
  2625.     stp->str_index = sizeof(Block);
  2626. }
  2627.  
  2628. void
  2629. fb64_stream_key(key, stp)
  2630.     Block key;
  2631.     register struct des_stinfo *stp;
  2632. {
  2633.     int rc = 0;
  2634.  
  2635. #ifdef MIT_CURRENT
  2636.     memcpy(stp->str_keybytes, key, sizeof(Block));
  2637.     stp->str_key.length = 8;
  2638.     stp->str_key.contents = stp->str_keybytes;
  2639.     /* the original version of this code uses des ecb mode, but
  2640.     it only ever does one block at a time.  cbc with a zero iv
  2641.     is identical */
  2642.     stp->str_key.enctype = ENCTYPE_DES_CBC_RAW;
  2643. #else /* MIT_CURRENT */
  2644.     memcpy(stp->str_ikey, key, sizeof(Block));
  2645.  
  2646.     memset(stp->str_sched,0,sizeof(Schedule));
  2647.  
  2648.     hexdump("fb64_stream_key",key,8);
  2649.  
  2650.     rc = des_key_sched(key, stp->str_sched);
  2651.     if ( rc == -1 ) {
  2652.         printf("?Invalid DES key specified for encryption\r\n");
  2653.         debug(F110,"fb64_stream_key",
  2654.                "invalid DES Key specified for encryption",0);
  2655.     } else if ( rc == -2 ) {
  2656.         printf("?Weak DES key specified for encryption\r\n");
  2657.         debug(F110,"fb64_stream_key",
  2658.                "weak DES Key specified for encryption",0);
  2659.     } else if ( rc != 0 ) {
  2660.         printf("?Key Schedule not created by encryption\r\n");
  2661.         debug(F110,"fb64_stream_key",
  2662.                "Key Schedule not created by encryption",0);
  2663.     }
  2664.     hexdump("fb64_stream_key schedule",stp->str_sched,8*16);
  2665. #endif /* MIT_CURRENT */
  2666.  
  2667.     memcpy(stp->str_output, stp->str_iv, sizeof(Block));
  2668.  
  2669.     stp->str_index = sizeof(Block);
  2670. }
  2671.  
  2672. /*
  2673.  * DES 64 bit Cipher Feedback
  2674.  *
  2675.  *     key --->+-----+
  2676.  *          +->| DES |--+
  2677.  *          |  +-----+  |
  2678.  *          |           v
  2679.  *  INPUT --(--------->(+)+---> DATA
  2680.  *          |             |
  2681.  *          +-------------+
  2682.  *
  2683.  *
  2684.  * Given:
  2685.  *      iV: Initial vector, 64 bits (8 bytes) long.
  2686.  *      Dn: the nth chunk of 64 bits (8 bytes) of data to encrypt (decrypt).
  2687.  *      On: the nth chunk of 64 bits (8 bytes) of encrypted (decrypted) output.
  2688.  *
  2689.  *      V0 = DES(iV, key)
  2690.  *      On = Dn ^ Vn
  2691.  *      V(n+1) = DES(On, key)
  2692.  */
  2693.  
  2694. void
  2695. cfb64_encrypt(s, c)
  2696.     register unsigned char *s;
  2697.     int c;
  2698. {
  2699.     register struct des_stinfo *stp = &des_fb[CFB].streams[DIR_ENCRYPT-1];
  2700.     register int index;
  2701.  
  2702.     index = stp->str_index;
  2703.     while (c-- > 0) {
  2704.         if (index == sizeof(Block)) {
  2705.             Block b;
  2706. #ifdef MIT_CURRENT
  2707.             ecb_encrypt(stp, stp->str_output, b);
  2708. #else /* MIT_CURRENT */
  2709.             des_ecb_encrypt(stp->str_output, b, stp->str_sched, 1);
  2710. #endif /* MIT_CURRENT */
  2711.             memcpy(stp->str_feed,b,sizeof(Block));
  2712.             index = 0;
  2713.         }
  2714.  
  2715.         /* On encryption, we store (feed ^ data) which is cypher */
  2716.         *s = stp->str_output[index] = (stp->str_feed[index] ^ *s);
  2717.         s++;
  2718.         index++;
  2719.     }
  2720.     stp->str_index = index;
  2721. }
  2722.  
  2723. int
  2724. cfb64_decrypt(data)
  2725.     int data;
  2726. {
  2727.     register struct des_stinfo *stp = &des_fb[CFB].streams[DIR_DECRYPT-1];
  2728.     int index;
  2729.  
  2730.     if (data == -1) {
  2731.         /*
  2732.         * Back up one byte.  It is assumed that we will
  2733.         * never back up more than one byte.  If we do, this
  2734.         * may or may not work.
  2735.         */
  2736.         if (stp->str_index)
  2737.             --stp->str_index;
  2738.         return(0);
  2739.     }
  2740.  
  2741.     index = stp->str_index++;
  2742.     if (index == sizeof(Block)) {
  2743.         Block b;
  2744. #ifdef MIT_CURRENT
  2745.         ecb_encrypt(stp, stp->str_output, b);
  2746. #else /* MIT_CURRENT */
  2747.         des_ecb_encrypt(stp->str_output, b, stp->str_sched, 1);
  2748. #endif /* MIT_CURRENT */
  2749.         memcpy(stp->str_feed, b, sizeof(Block));
  2750.         stp->str_index = 1;     /* Next time will be 1 */
  2751.         index = 0;              /* But now use 0 */
  2752.     }
  2753.  
  2754.     /* On decryption we store (data) which is cypher. */
  2755.     stp->str_output[index] = data;
  2756.     return(data ^ stp->str_feed[index]);
  2757. }
  2758.  
  2759. /*
  2760.  * DES 64 bit Output Feedback
  2761.  *
  2762.  * key --->+-----+
  2763.  *      +->| DES |--+
  2764.  *      |  +-----+  |
  2765.  *      +-----------+
  2766.  *                  v
  2767.  *  INPUT -------->(+) ----> DATA
  2768.  *
  2769.  * Given:
  2770.  *      iV: Initial vector, 64 bits (8 bytes) long.
  2771.  *      Dn: the nth chunk of 64 bits (8 bytes) of data to encrypt (decrypt).
  2772.  *      On: the nth chunk of 64 bits (8 bytes) of encrypted (decrypted) output.
  2773.  *
  2774.  *      V0 = DES(iV, key)
  2775.  *      V(n+1) = DES(Vn, key)
  2776.  *      On = Dn ^ Vn
  2777.  */
  2778. void
  2779. ofb64_encrypt(s, c)
  2780.     register unsigned char *s;
  2781.     int c;
  2782. {
  2783.     register struct des_stinfo *stp = &des_fb[OFB].streams[DIR_ENCRYPT-1];
  2784.     register int index;
  2785.  
  2786.     index = stp->str_index;
  2787.     while (c-- > 0) {
  2788.         if (index == sizeof(Block)) {
  2789.             Block b;
  2790. #ifdef MIT_CURRENT
  2791.             ecb_encrypt(stp, stp->str_feed, b);
  2792. #else /* MIT_CURRENT */
  2793.             des_ecb_encrypt(stp->str_feed, b, stp->str_sched, 1);
  2794. #endif /* MIT_CURRENT */
  2795.             memcpy(stp->str_feed,b,sizeof(Block));
  2796.             index = 0;
  2797.         }
  2798.         *s++ ^= stp->str_feed[index];
  2799.         index++;
  2800.     }
  2801.     stp->str_index = index;
  2802. }
  2803.  
  2804. int
  2805. ofb64_decrypt(data)
  2806.     int data;
  2807. {
  2808.     register struct des_stinfo *stp = &des_fb[OFB].streams[DIR_DECRYPT-1];
  2809.     int index;
  2810.  
  2811.     if (data == -1) {
  2812.         /*
  2813.         * Back up one byte.  It is assumed that we will
  2814.         * never back up more than one byte.  If we do, this
  2815.         * may or may not work.
  2816.         */
  2817.         if (stp->str_index)
  2818.             --stp->str_index;
  2819.         return(0);
  2820.     }
  2821.  
  2822.     index = stp->str_index++;
  2823.     if (index == sizeof(Block)) {
  2824.         Block b;
  2825. #ifdef MIT_CURRENT
  2826.         ecb_encrypt(stp, stp->str_feed, b);
  2827. #else /* MIT_CURRENT */
  2828.         des_ecb_encrypt(stp->str_feed, b, stp->str_sched, 1);
  2829. #endif /* MIT_CURRENT */
  2830.         memcpy(stp->str_feed, b, sizeof(Block));
  2831.         stp->str_index = 1;     /* Next time will be 1 */
  2832.         index = 0;              /* But now use 0 */
  2833.     }
  2834.  
  2835.     return(data ^ stp->str_feed[index]);
  2836. }
  2837.  
  2838.  
  2839. void des3_fb64_stream_iv P((Block, struct des3_stinfo *));
  2840. void des3_fb64_init P((struct des3_fb *));
  2841. static int des3_fb64_start P((struct des3_fb *, int, int));
  2842. int des3_fb64_is P((unsigned char *, int, struct des3_fb *));
  2843. int des3_fb64_reply P((unsigned char *, int, struct des3_fb *));
  2844. static int des3_fb64_session P((Session_Key *, int, struct des3_fb *));
  2845. void des3_fb64_stream_key P((Block *, struct des3_stinfo *));
  2846. int des3_fb64_keyid P((int, unsigned char *, int *, struct des3_fb *));
  2847.  
  2848. void
  2849. des3_cfb64_init(server)
  2850.     int server;
  2851. {
  2852.     des3_fb64_init(&des3_fb[CFB]);
  2853.     des3_fb[CFB].fb_feed[4] = ENCTYPE_DES3_CFB64;
  2854.     des3_fb[CFB].streams[0].str_flagshift = SHIFT_VAL(0, CFB);
  2855.     des3_fb[CFB].streams[1].str_flagshift = SHIFT_VAL(1, CFB);
  2856. }
  2857.  
  2858. void
  2859. des3_ofb64_init(server)
  2860.     int server;
  2861. {
  2862.     des3_fb64_init(&des3_fb[OFB]);
  2863.     des3_fb[OFB].fb_feed[4] = ENCTYPE_DES3_OFB64;
  2864.     des3_fb[CFB].streams[0].str_flagshift = SHIFT_VAL(0, OFB);
  2865.     des3_fb[CFB].streams[1].str_flagshift = SHIFT_VAL(1, OFB);
  2866. }
  2867.  
  2868. void
  2869. des3_fb64_init(fbp)
  2870.     register struct des3_fb *fbp;
  2871. {
  2872.     memset((void *)fbp, 0, sizeof(*fbp));
  2873.     fbp->state[0] = fbp->state[1] = xFAILED;
  2874.     fbp->fb_feed[0] = IAC;
  2875.     fbp->fb_feed[1] = SB;
  2876.     fbp->fb_feed[2] = TELOPT_ENCRYPTION;
  2877.     fbp->fb_feed[3] = ENCRYPT_IS;
  2878. }
  2879.  
  2880. /*
  2881.  * Returns:
  2882.  *      -1: some error.  Negotiation is done, encryption not ready.
  2883.  *       0: Successful, initial negotiation all done.
  2884.  *       1: successful, negotiation not done yet.
  2885.  *       2: Not yet.  Other things (like getting the key from
  2886.  *          Kerberos) have to happen before we can continue.
  2887.  */
  2888. int
  2889. des3_cfb64_start(dir, server)
  2890.     int dir;
  2891.     int server;
  2892. {
  2893.     return(des3_fb64_start(&des3_fb[CFB], dir, server));
  2894. }
  2895. int
  2896. des3_ofb64_start(dir, server)
  2897.     int dir;
  2898.     int server;
  2899. {
  2900.     return(des3_fb64_start(&des3_fb[OFB], dir, server));
  2901. }
  2902.  
  2903. static int
  2904. des3_fb64_start(fbp, dir, server)
  2905.     struct des3_fb *fbp;
  2906.     int dir;
  2907.     int server;
  2908. {
  2909.     int x;
  2910.     unsigned char *p;
  2911.     register int state;
  2912.  
  2913.     switch (dir) {
  2914.     case DIR_DECRYPT:
  2915.         /*
  2916.         * This is simply a request to have the other side
  2917.         * start output (our input).  He will negotiate an
  2918.         * IV so we need not look for it.
  2919.         */
  2920.         state = fbp->state[dir-1];
  2921.         if (state == xFAILED)
  2922.             state = IN_PROGRESS;
  2923.         break;
  2924.  
  2925.     case DIR_ENCRYPT:
  2926.         state = fbp->state[dir-1];
  2927.         if (state == xFAILED)
  2928.             state = IN_PROGRESS;
  2929.         else if ((state & NO_SEND_IV) == 0)
  2930.             break;
  2931.  
  2932.         if (!VALIDKEY(fbp->krbdes_key[0]) ||
  2933.             !VALIDKEY(fbp->krbdes_key[1]) ||
  2934.             !VALIDKEY(fbp->krbdes_key[2]) ) {
  2935.             fbp->need_start = 1;
  2936.             break;
  2937.         }
  2938.         state &= ~NO_SEND_IV;
  2939.         state |= NO_RECV_IV;
  2940.         /*
  2941.         * Create a random feed and send it over.
  2942.         */
  2943.         des_new_random_key(fbp->temp_feed);
  2944. #ifdef LIBDES
  2945.         des_ecb3_encrypt(fbp->temp_feed, fbp->temp_feed,
  2946.                          fbp->krbdes_sched[0],
  2947.                          fbp->krbdes_sched[1],
  2948.                          fbp->krbdes_sched[2],
  2949.                          1);
  2950. #else /* LIBDES */
  2951.         des_ecb_encrypt(fbp->temp_feed, fbp->temp_feed,
  2952.                          fbp->krbdes_sched[0], 1);
  2953.         des_ecb_encrypt(fbp->temp_feed, fbp->temp_feed,
  2954.                          fbp->krbdes_sched[1], 0);
  2955.         des_ecb_encrypt(fbp->temp_feed, fbp->temp_feed,
  2956.                          fbp->krbdes_sched[2], 1);
  2957. #endif /* LIBDES */
  2958.  
  2959.         p = fbp->fb_feed + 3;
  2960.         *p++ = ENCRYPT_IS;
  2961.         p++;
  2962.         *p++ = FB64_IV;
  2963.         for (x = 0; x < sizeof(Block); ++x) {
  2964.             if (( *p++ = fbp->temp_feed[x]) == IAC)
  2965.                 *p++ = IAC;
  2966.         }
  2967.         *p++ = IAC;
  2968.         *p++ = SE;
  2969.  
  2970.         if (deblog || tn_deb || debses) {
  2971.             int i;
  2972.             sprintf(tn_msg,
  2973.                      "TELNET SENT SB %s IS %s FB64_IV ",
  2974.                      TELOPT(fbp->fb_feed[2]),
  2975.                      enctype_names[fbp->fb_feed[4]]);           /* safe */
  2976.             tn_hex(tn_msg,TN_MSG_LEN,&fbp->fb_feed[6],(p-fbp->fb_feed)-2-6);
  2977.             ckstrncat(tn_msg,"IAC SE",TN_MSG_LEN);
  2978.             debug(F100,tn_msg,"",0);
  2979.             if (tn_deb || debses) tn_debug(tn_msg);
  2980.         }
  2981. #ifdef OS2
  2982.         RequestTelnetMutex( SEM_INDEFINITE_WAIT );
  2983. #endif
  2984.         ttol(fbp->fb_feed, p - fbp->fb_feed);
  2985. #ifdef OS2
  2986.         ReleaseTelnetMutex();
  2987. #endif
  2988.         break;
  2989.     default:
  2990.         return(xFAILED);
  2991.     }
  2992.     return(fbp->state[dir-1] = state);
  2993. }
  2994.  
  2995. /*
  2996.  * Returns:
  2997.  *      -1: some error.  Negotiation is done, encryption not ready.
  2998.  *       0: Successful, initial negotiation all done.
  2999.  *       1: successful, negotiation not done yet.
  3000.  */
  3001. int
  3002. des3_cfb64_is(data, cnt)
  3003.     unsigned char *data;
  3004.     int cnt;
  3005. {
  3006.     return(des3_fb64_is(data, cnt, &des3_fb[CFB]));
  3007. }
  3008.  
  3009. int
  3010. des3_ofb64_is(data, cnt)
  3011.     unsigned char *data;
  3012.     int cnt;
  3013. {
  3014.     return(des3_fb64_is(data, cnt, &des3_fb[OFB]));
  3015. }
  3016.  
  3017. int
  3018. des3_fb64_is(data, cnt, fbp)
  3019.     unsigned char *data;
  3020.     int cnt;
  3021.     struct des3_fb *fbp;
  3022. {
  3023.     unsigned char *p;
  3024.     register int state = fbp->state[DIR_DECRYPT-1];
  3025.  
  3026.     if (cnt-- < 1)
  3027.         goto failure;
  3028.  
  3029. #ifdef CK_SSL
  3030.     if (!TELOPT_SB(TELOPT_START_TLS).start_tls.me_follows)
  3031. #endif /* CK_SSL */
  3032.     switch (*data++) {
  3033.     case FB64_IV:
  3034.         if (cnt != sizeof(Block)) {
  3035. #ifdef DEBUG
  3036.             if (encrypt_debug_mode)
  3037.                 printf("DES3_FB64: initial vector failed on size\r\n");
  3038. #endif
  3039.             state = xFAILED;
  3040.             goto failure;
  3041.         }
  3042.  
  3043. #ifdef DEBUG
  3044.         if (encrypt_debug_mode) {
  3045.             printf("DES3_FB64: initial vector received\r\n");
  3046.             printf("Initializing Decrypt stream\r\n");
  3047.         }
  3048. #endif
  3049.         des3_fb64_stream_iv((void *)data, &fbp->streams[DIR_DECRYPT-1]);
  3050.  
  3051.         p = fbp->fb_feed + 3;
  3052.         *p++ = ENCRYPT_REPLY;
  3053.         p++;
  3054.         *p++ = FB64_IV_OK;
  3055.         *p++ = IAC;
  3056.         *p++ = SE;
  3057.  
  3058.         if (deblog || tn_deb || debses) {
  3059.             int i;
  3060.             sprintf(tn_msg,
  3061.                      "TELNET SENT SB %s REPLY %s FB64_IV_OK ",
  3062.                      TELOPT(fbp->fb_feed[2]),
  3063.                      enctype_names[fbp->fb_feed[4]]);           /* safe */
  3064.             tn_hex(tn_msg,TN_MSG_LEN,&fbp->fb_feed[6],(p-fbp->fb_feed)-2-6);
  3065.             ckstrncat(tn_msg,"IAC SE",TN_MSG_LEN);
  3066.             debug(F100,tn_msg,"",0);
  3067.             if (tn_deb || debses) tn_debug(tn_msg);
  3068.         }
  3069. #ifdef OS2
  3070.         RequestTelnetMutex( SEM_INDEFINITE_WAIT );
  3071. #endif
  3072.         ttol(fbp->fb_feed, p - fbp->fb_feed);
  3073. #ifdef OS2
  3074.         ReleaseTelnetMutex();
  3075. #endif
  3076.         state = IN_PROGRESS;
  3077.         break;
  3078.  
  3079.     default:
  3080. #if 0
  3081.         if (encrypt_debug_mode) {
  3082.             printf("Unknown option type: %d\r\n", *(data-1));
  3083.             printf("\r\n");
  3084.         }
  3085. #endif
  3086.         /* FALL THROUGH */
  3087.       failure:
  3088.         /*
  3089.         * We failed.  Send an FB64_IV_BAD option
  3090.         * to the other side so it will know that
  3091.         * things failed.
  3092.         */
  3093.         p = fbp->fb_feed + 3;
  3094.         *p++ = ENCRYPT_REPLY;
  3095.         p++;
  3096.         *p++ = FB64_IV_BAD;
  3097.         *p++ = IAC;
  3098.         *p++ = SE;
  3099.  
  3100.         if (deblog || tn_deb || debses) {
  3101.             int i;
  3102.             sprintf(tn_msg,
  3103.                      "TELNET SENT SB %s REPLY %s FB64_IV_BAD ",
  3104.                      TELOPT(fbp->fb_feed[2]),
  3105.                      enctype_names[fbp->fb_feed[4]]);           /* safe */
  3106.             tn_hex(tn_msg,TN_MSG_LEN,&fbp->fb_feed[6],(p-fbp->fb_feed)-2-6);
  3107.             ckstrncat(tn_msg,"IAC SE",TN_MSG_LEN);
  3108.             debug(F100,tn_msg,"",0);
  3109.             if (tn_deb || debses) tn_debug(tn_msg);
  3110.         }
  3111. #ifdef OS2
  3112.         RequestTelnetMutex( SEM_INDEFINITE_WAIT );
  3113. #endif
  3114.         ttol(fbp->fb_feed, p - fbp->fb_feed);
  3115. #ifdef OS2
  3116.         ReleaseTelnetMutex();
  3117. #endif
  3118.         break;
  3119.     }
  3120.     return(fbp->state[DIR_DECRYPT-1] = state);
  3121. }
  3122.  
  3123. /*
  3124.  * Returns:
  3125.  *      -1: some error.  Negotiation is done, encryption not ready.
  3126.  *       0: Successful, initial negotiation all done.
  3127.  *       1: successful, negotiation not done yet.
  3128.  */
  3129. int
  3130. des3_cfb64_reply(data, cnt)
  3131.     unsigned char *data;
  3132.     int cnt;
  3133. {
  3134.     return(des3_fb64_reply(data, cnt, &des3_fb[CFB]));
  3135. }
  3136. int
  3137. des3_ofb64_reply(data, cnt)
  3138.     unsigned char *data;
  3139.     int cnt;
  3140. {
  3141.     return(des3_fb64_reply(data, cnt, &des3_fb[OFB]));
  3142. }
  3143.  
  3144.  
  3145. int
  3146. des3_fb64_reply(data, cnt, fbp)
  3147.     unsigned char *data;
  3148.     int cnt;
  3149.     struct des3_fb *fbp;
  3150. {
  3151.     register int state = fbp->state[DIR_ENCRYPT-1];
  3152.  
  3153.     if (cnt-- < 1)
  3154.         goto failure;
  3155.  
  3156.     switch (*data++) {
  3157.     case FB64_IV_OK:
  3158.         des3_fb64_stream_iv(fbp->temp_feed, &fbp->streams[DIR_ENCRYPT-1]);
  3159.         if (state == xFAILED)
  3160.             state = IN_PROGRESS;
  3161.         state &= ~NO_RECV_IV;
  3162.         encrypt_send_keyid(DIR_ENCRYPT, (unsigned char *)"\0", 1, 1);
  3163.         break;
  3164.  
  3165.     case FB64_IV_BAD:
  3166.         memset(fbp->temp_feed, 0, sizeof(Block));
  3167.         des3_fb64_stream_iv(fbp->temp_feed, &fbp->streams[DIR_ENCRYPT-1]);
  3168.         state = xFAILED;
  3169.         break;
  3170.  
  3171.     default:
  3172. #if 0
  3173.         if (encrypt_debug_mode) {
  3174.             printf("Unknown option type: %d\r\n", data[-1]);
  3175.             printf("\r\n");
  3176.         }
  3177. #endif
  3178.         /* FALL THROUGH */
  3179.       failure:
  3180.         state = xFAILED;
  3181.         break;
  3182.     }
  3183.     return(fbp->state[DIR_ENCRYPT-1] = state);
  3184. }
  3185.  
  3186. int
  3187. des3_cfb64_session(key, server)
  3188.     Session_Key *key;
  3189.     int server;
  3190. {
  3191.     return(des3_fb64_session(key, server, &des3_fb[CFB]));
  3192. }
  3193.  
  3194. int
  3195. des3_ofb64_session(key, server)
  3196.     Session_Key *key;
  3197.     int server;
  3198. {
  3199.     return(des3_fb64_session(key, server, &des3_fb[OFB]));
  3200. }
  3201.  
  3202. static int
  3203. des3_fb64_session(key, server, fbp)
  3204.     Session_Key *key;
  3205.     int server;
  3206.     struct des3_fb *fbp;
  3207. {
  3208.     int rc=0,i=0;
  3209.     int keys2use=0;
  3210.     struct des3_stinfo * s_stream;
  3211.     struct des3_stinfo * c_stream;
  3212.  
  3213.     if(server) {
  3214.         s_stream = &fbp->streams[DIR_ENCRYPT-1];
  3215.         c_stream = &fbp->streams[DIR_DECRYPT-1];
  3216.     }
  3217.     else {
  3218.         s_stream = &fbp->streams[DIR_DECRYPT-1];
  3219.         c_stream = &fbp->streams[DIR_ENCRYPT-1];
  3220.     }
  3221.  
  3222.     keys2use = key->length / sizeof(Block);
  3223.     if (!key || (key->type == SK_DES) || (keys2use < 2)) {
  3224.         CHAR buf[80];
  3225.         sprintf(buf,"Can't set 3DES session key (%d < %d)",
  3226.                 key ? key->length : 0, 2 * sizeof(Block));      /* safe */
  3227. #ifdef DEBUG
  3228.         if (encrypt_debug_mode)
  3229.             printf("%s\r\n",buf);
  3230. #endif
  3231.         debug(F110,"des3_fb64_session",buf,0);
  3232.         return(-1);
  3233.     }
  3234.  
  3235.     debug(F111,"des3_fb64_session","keys2use",keys2use);
  3236.     /* Compute the first set of keys / key order */
  3237.     switch ( keys2use ) {
  3238.     case 2:
  3239.         memcpy((void *)fbp->krbdes_key[0], (void *)key->data, sizeof(Block));
  3240.         memcpy((void *) fbp->krbdes_key[1],(void *)(key->data + sizeof(Block)),
  3241.                  sizeof(Block));
  3242.         memcpy((void *)fbp->krbdes_key[2], (void *)key->data, sizeof(Block));
  3243.         break;
  3244.     case 3:
  3245.     default:
  3246.         memcpy((void *)fbp->krbdes_key[0], (void *)key->data, sizeof(Block));
  3247.         memcpy((void *) fbp->krbdes_key[1],(void *)(key->data + sizeof(Block)),
  3248.                  sizeof(Block));
  3249.         memcpy((void *) fbp->krbdes_key[2],
  3250.                  (void *) (key->data + 2*sizeof(Block)), sizeof(Block));
  3251.         break;
  3252.     }
  3253.     hexdump("des3_session_key key->data",key->data,sizeof(Block));
  3254.     hexdump("des3_session_key fbp->krbdes_key[0]",
  3255.             fbp->krbdes_key[0],
  3256.             sizeof(Block)
  3257.             );
  3258.     if (fbp->once == 0) {
  3259.         des_set_random_generator_seed(fbp->krbdes_key[0]);
  3260.         fbp->once = 1;
  3261.     }
  3262.  
  3263.     for ( i=0;i<3;i++ )
  3264.         des_fixup_key_parity(fbp->krbdes_key[i]);
  3265.     des3_fb64_stream_key(fbp->krbdes_key, s_stream);
  3266.  
  3267.  
  3268.     /* Compute the second set of keys / key order */
  3269.     switch ( keys2use ) {
  3270.     case 2:
  3271.         memcpy((void *) fbp->krbdes_key[0],(void *)(key->data + sizeof(Block)),
  3272.                  sizeof(Block));
  3273.         memcpy((void *)fbp->krbdes_key[1], (void *)key->data, sizeof(Block));
  3274.         memcpy((void *) fbp->krbdes_key[2],(void *)(key->data + sizeof(Block)),
  3275.                  sizeof(Block));
  3276.         break;
  3277.     case 3:
  3278.         memcpy((void *) fbp->krbdes_key[0],(void *)(key->data + sizeof(Block)),
  3279.                  sizeof(Block));
  3280.         memcpy((void *) fbp->krbdes_key[1],
  3281.                  (void *) (key->data + 2*sizeof(Block)), sizeof(Block));
  3282.         memcpy((void *)fbp->krbdes_key[2], (void *)key->data, sizeof(Block));
  3283.         break;
  3284.     case 4:
  3285.         memcpy((void *) fbp->krbdes_key[0],(void *)(key->data + sizeof(Block)),
  3286.                  sizeof(Block));
  3287.         memcpy((void *) fbp->krbdes_key[1],
  3288.                  (void *) (key->data + 3*sizeof(Block)), sizeof(Block));
  3289.         memcpy((void *)fbp->krbdes_key[2], (void *)key->data, sizeof(Block));
  3290.         break;
  3291.     case 5:
  3292.         memcpy((void *) fbp->krbdes_key[0],(void *)(key->data + sizeof(Block)),
  3293.                  sizeof(Block));
  3294.         memcpy((void *) fbp->krbdes_key[1],
  3295.                  (void *) (key->data + 3*sizeof(Block)), sizeof(Block));
  3296.         memcpy((void *)fbp->krbdes_key[2],
  3297.                  (void *)(key->data + 4*sizeof(Block)), sizeof(Block));
  3298.         break;
  3299.     case 6:
  3300.         memcpy((void *) fbp->krbdes_key[0],
  3301.                  (void *) (key->data + 3*sizeof(Block)), sizeof(Block));
  3302.         memcpy((void *)fbp->krbdes_key[1],
  3303.                  (void *)(key->data + 4*sizeof(Block)), sizeof(Block));
  3304.         memcpy((void *) fbp->krbdes_key[2],
  3305.                  (void *) (key->data + 5 *sizeof(Block)),  sizeof(Block));
  3306.         break;
  3307.     }
  3308.  
  3309.     for ( i=0;i<3;i++ )
  3310.         des_fixup_key_parity(fbp->krbdes_key[i]);
  3311.     des3_fb64_stream_key(fbp->krbdes_key, c_stream);
  3312.  
  3313.     /* now use the second set of keys to build the default Key Schedule */
  3314.     /* which is used for generating the IV.                             */
  3315.     for ( i=0;i<3;i++ ) {
  3316.         memset(fbp->krbdes_sched[i],0,sizeof(Schedule));
  3317.  
  3318.         rc = des_key_sched(fbp->krbdes_key[i], fbp->krbdes_sched[i]);
  3319.         if ( rc == -1 ) {
  3320.             printf("?Invalid DES key specified for encryption [DES3,%s]\r\n",
  3321.                     server?"server":"client");
  3322.             debug(F110,"des3_fb64_stream_iv",
  3323.                    "invalid DES Key specified for encryption",0);
  3324.         } else if ( rc == -2 ) {
  3325.             printf("?Weak DES key specified for encryption\r\n");
  3326.             debug(F110,"des3_fb64_stream_iv",
  3327.                    "weak DES Key specified for encryption",0);
  3328.         } else if ( rc != 0 ) {
  3329.             printf("?Key Schedule not created by encryption\r\n");
  3330.             debug(F110,"des3_fb64_stream_iv",
  3331.                    "Key Schedule not created by encryption",0);
  3332.         }
  3333.         hexdump("des3_fb64_session_key schedule",fbp->krbdes_sched[i],8*16);
  3334.     }
  3335.     /*
  3336.     * Now look to see if krbdes_start() was was waiting for
  3337.     * the key to show up.  If so, go ahead an call it now
  3338.     * that we have the key.
  3339.     */
  3340.     if (fbp->need_start) {
  3341.         fbp->need_start = 0;
  3342.         des3_fb64_start(fbp, DIR_ENCRYPT, server);
  3343.     }
  3344.     return(0);
  3345. }
  3346.  
  3347. /*
  3348.  * We only accept a keyid of 0.  If we get a keyid of
  3349.  * 0, then mark the state as SUCCESS.
  3350.  */
  3351. int
  3352. des3_cfb64_keyid(dir, kp, lenp)
  3353.     int dir, *lenp;
  3354.     unsigned char *kp;
  3355. {
  3356.     return(des3_fb64_keyid(dir, kp, lenp, &des3_fb[CFB]));
  3357. }
  3358.  
  3359. int
  3360. des3_ofb64_keyid(dir, kp, lenp)
  3361.     int dir, *lenp;
  3362.     unsigned char *kp;
  3363. {
  3364.     return(des3_fb64_keyid(dir, kp, lenp, &des3_fb[OFB]));
  3365. }
  3366.  
  3367. int
  3368. des3_fb64_keyid(dir, kp, lenp, fbp)
  3369.     int dir, *lenp;
  3370.     unsigned char *kp;
  3371.     struct des3_fb *fbp;
  3372. {
  3373.     register int state = fbp->state[dir-1];
  3374.  
  3375.     if (*lenp != 1 || (*kp != '\0')) {
  3376.         *lenp = 0;
  3377.         return(state);
  3378.     }
  3379.  
  3380.     if (state == xFAILED)
  3381.         state = IN_PROGRESS;
  3382.  
  3383.     state &= ~NO_KEYID;
  3384.  
  3385.     return(fbp->state[dir-1] = state);
  3386. }
  3387.  
  3388. #if 0
  3389. void
  3390. des3_fb64_printsub(data, cnt, buf, buflen, type)
  3391.     unsigned char *data, *buf, *type;
  3392.     int cnt, buflen;
  3393. {
  3394.     char lbuf[64];
  3395.     register int i;
  3396.     char *cp;
  3397.  
  3398.     buf[buflen-1] = '\0';               /* make sure it's NULL terminated */
  3399.     buflen -= 1;
  3400.  
  3401.     switch(data[2]) {
  3402.     case FB64_IV:
  3403.         sprintf(lbuf, "%s_IV", type);
  3404.         cp = lbuf;
  3405.         goto common;
  3406.  
  3407.     case FB64_IV_OK:
  3408.         sprintf(lbuf, "%s_IV_OK", type);
  3409.         cp = lbuf;
  3410.         goto common;
  3411.  
  3412.     case FB64_IV_BAD:
  3413.         sprintf(lbuf, "%s_IV_BAD", type);
  3414.         cp = lbuf;
  3415.         goto common;
  3416.  
  3417.     case FB64_CHALLENGE:
  3418.         sprintf(lbuf, "%s_CHALLENGE", type);
  3419.         cp = lbuf;
  3420.         goto common;
  3421.  
  3422.     case FB64_RESPONSE:
  3423.         sprintf(lbuf, "%s_RESPONSE", type);
  3424.         cp = lbuf;
  3425.         goto common;
  3426.  
  3427.     default:
  3428.         sprintf(lbuf, " %d (unknown)", data[2]);
  3429.         cp = lbuf;
  3430.       common:
  3431.         for (; (buflen > 0) && (*buf = *cp++); buf++)
  3432.             buflen--;
  3433.         for (i = 3; i < cnt; i++) {
  3434.             sprintf(lbuf, " %d", data[i]);
  3435.             for (cp = lbuf; (buflen > 0) && (*buf = *cp++); buf++)
  3436.                 buflen--;
  3437.         }
  3438.         break;
  3439.     }
  3440. }
  3441.  
  3442. void
  3443. des3_cfb64_printsub(data, cnt, buf, buflen)
  3444.     unsigned char *data, *buf;
  3445.     int cnt, buflen;
  3446. {
  3447.     des3_fb64_printsub(data, cnt, buf, buflen, "CFB64");
  3448. }
  3449.  
  3450. void
  3451. des3_ofb64_printsub(data, cnt, buf, buflen)
  3452.     unsigned char *data, *buf;
  3453.     int cnt, buflen;
  3454. {
  3455.     des3_fb64_printsub(data, cnt, buf, buflen, "OFB64");
  3456. }
  3457. #endif
  3458.  
  3459. void
  3460. des3_fb64_stream_iv(seed, stp)
  3461.     Block seed;
  3462.     register struct des3_stinfo *stp;
  3463. {
  3464.     int rc=0, i = 0;;
  3465.  
  3466.     memcpy(stp->str_iv,     seed, sizeof(Block));
  3467.     memcpy(stp->str_output, seed, sizeof(Block));
  3468.     for ( i=0;i<3;i++ ) {
  3469.         memset(stp->str_sched[i],0,sizeof(Schedule));
  3470.  
  3471.         hexdump("des3_fb64_stream_iv",stp->str_ikey[i],8);
  3472.  
  3473.         rc = des_key_sched(stp->str_ikey[i], stp->str_sched[i]);
  3474.         if ( rc == -1 ) {
  3475.             printf("?Invalid DES key specified for encryption [DES3 iv]\r\n");
  3476.             debug(F110,"des3_fb64_stream_iv",
  3477.                    "invalid DES Key specified for encryption",0);
  3478.         } else if ( rc == -2 ) {
  3479.             printf("?Weak DES key specified for encryption\r\n");
  3480.             debug(F110,"des3_fb64_stream_iv",
  3481.                    "weak DES Key specified for encryption",0);
  3482.         } else if ( rc != 0 ) {
  3483.             printf("?Key Schedule not created by encryption\r\n");
  3484.             debug(F110,"des3_fb64_stream_iv",
  3485.                    "Key Schedule not created by encryption",0);
  3486.         }
  3487.         hexdump("des3_fb64_stream_iv schedule",stp->str_sched[i],8*16);
  3488.     }
  3489.     stp->str_index = sizeof(Block);
  3490. }
  3491.  
  3492. void
  3493. des3_fb64_stream_key(key, stp)
  3494.     Block * key;
  3495.     register struct des3_stinfo *stp;
  3496. {
  3497.     int rc = 0, i = 0;
  3498.  
  3499.     for ( i=0;i<3;i++ ) {
  3500.         memcpy(stp->str_ikey[i], key[i], sizeof(Block));
  3501.  
  3502.         memset(stp->str_sched[i],0,sizeof(Schedule));
  3503.  
  3504.         hexdump("des3_fb64_stream_key",key[i],8);
  3505.  
  3506.         rc = des_key_sched(key[i], stp->str_sched[i]);
  3507.         if ( rc == -1 ) {
  3508.             printf("?Invalid DES key specified for encryption [DES3 key]\r\n");
  3509.             debug(F110,"des3_fb64_stream_key",
  3510.                    "invalid DES Key specified for encryption",0);
  3511.         } else if ( rc == -2 ) {
  3512.             printf("?Weak DES key specified for encryption\r\n");
  3513.             debug(F110,"des3_fb64_stream_key",
  3514.                    "weak DES Key specified for encryption",0);
  3515.         } else if ( rc != 0 ) {
  3516.             printf("?Key Schedule not created by encryption\r\n");
  3517.             debug(F110,"des3_fb64_stream_key",
  3518.                    "Key Schedule not created by encryption",0);
  3519.         }
  3520.         hexdump("des3_fb64_stream_key schedule",stp->str_sched[i],8*16);
  3521.     }
  3522.  
  3523.     memcpy(stp->str_output, stp->str_iv, sizeof(Block));
  3524.     stp->str_index = sizeof(Block);
  3525. }
  3526.  
  3527. /*
  3528.  * DES3 64 bit Cipher Feedback
  3529.  *
  3530.  *                key1       key2       key3
  3531.  *                 |          |          |
  3532.  *                 v          v          v
  3533.  *             +-------+  +-------+  +-------+
  3534.  *          +->| DES-e |->| DES-d |->| DES-e |-- +
  3535.  *          |  +-------+  +-------+  +-------+   |
  3536.  *          |                                    v
  3537.  *  INPUT --(-------------------------------->(+)+---> DATA
  3538.  *          |                                    |
  3539.  *          +------------------------------------+
  3540.  *
  3541.  *
  3542.  * Given:
  3543.  *      iV: Initial vector, 64 bits (8 bytes) long.
  3544.  *      Dn: the nth chunk of 64 bits (8 bytes) of data to encrypt (decrypt).
  3545.  *      On: the nth chunk of 64 bits (8 bytes) of encrypted (decrypted) output.
  3546.  *
  3547.  *      V0 = DES-e(DES-d(DES-e(iV, key1),key2),key3)
  3548.  *      On = Dn ^ Vn
  3549.  *      V(n+1) = DES-e(DES-d(DES-e(On, key1),key2),key3)
  3550.  */
  3551.  
  3552. void
  3553. des3_cfb64_encrypt(s, c)
  3554.     register unsigned char *s;
  3555.     int c;
  3556. {
  3557.     register struct des3_stinfo *stp = &des3_fb[CFB].streams[DIR_ENCRYPT-1];
  3558.     register int index;
  3559.  
  3560.     index = stp->str_index;
  3561.     while (c-- > 0) {
  3562.         if (index == sizeof(Block)) {
  3563.             Block b;
  3564. #ifdef LIBDES
  3565.             des_ecb3_encrypt(stp->str_output, b, stp->str_sched[0],
  3566.                               stp->str_sched[1], stp->str_sched[2], 1);
  3567. #else /* LIBDES */
  3568.             des_ecb_encrypt(stp->str_output, b,
  3569.                              stp->str_sched[0], 1);
  3570.             des_ecb_encrypt(stp->str_output, b,
  3571.                              stp->str_sched[1], 0);
  3572.             des_ecb_encrypt(stp->str_output, b,
  3573.                              stp->str_sched[2], 1);
  3574. #endif /* LIBDES */
  3575.             memcpy(stp->str_feed,b,sizeof(Block));
  3576.             index = 0;
  3577.         }
  3578.  
  3579.         /* On encryption, we store (feed ^ data) which is cypher */
  3580.         *s = stp->str_output[index] = (stp->str_feed[index] ^ *s);
  3581.         s++;
  3582.         index++;
  3583.     }
  3584.     stp->str_index = index;
  3585. }
  3586.  
  3587. int
  3588. des3_cfb64_decrypt(data)
  3589.     int data;
  3590. {
  3591.     register struct des3_stinfo *stp = &des3_fb[CFB].streams[DIR_DECRYPT-1];
  3592.     int index;
  3593.  
  3594.     if (data == -1) {
  3595.         /*
  3596.         * Back up one byte.  It is assumed that we will
  3597.         * never back up more than one byte.  If we do, this
  3598.         * may or may not work.
  3599.         */
  3600.         if (stp->str_index)
  3601.             --stp->str_index;
  3602.         return(0);
  3603.     }
  3604.  
  3605.     index = stp->str_index++;
  3606.     if (index == sizeof(Block)) {
  3607.         Block b;
  3608. #ifdef LIBDES
  3609.         des_ecb3_encrypt(stp->str_output, b, stp->str_sched[0],
  3610.                           stp->str_sched[1], stp->str_sched[2], 1);
  3611. #else /* LIBDES */
  3612.             des_ecb_encrypt(stp->str_output, b,
  3613.                              stp->str_sched[0], 1);
  3614.             des_ecb_encrypt(stp->str_output, b,
  3615.                              stp->str_sched[1], 0);
  3616.             des_ecb_encrypt(stp->str_output, b,
  3617.                              stp->str_sched[2], 1);
  3618. #endif /* LIBDES */
  3619.         memcpy(stp->str_feed, b, sizeof(Block));
  3620.         stp->str_index = 1;     /* Next time will be 1 */
  3621.         index = 0;              /* But now use 0 */
  3622.     }
  3623.  
  3624.     /* On decryption we store (data) which is cypher. */
  3625.     stp->str_output[index] = data;
  3626.     return(data ^ stp->str_feed[index]);
  3627. }
  3628.  
  3629. /*
  3630.  * DES3 64 bit Output Feedback
  3631.  *
  3632.  *
  3633.  *                key1       key2       key3
  3634.  *                 |          |          |
  3635.  *                 v          v          v
  3636.  *             +-------+  +-------+  +-------+
  3637.  *          +->| DES-e |->| DES-d |->| DES-e |-- +
  3638.  *          |  +-------+  +-------+  +-------+   |
  3639.  *          +------------------------------------+
  3640.  *                                               v
  3641.  *  INPUT ------------------------------------->(+) ----> DATA
  3642.  *
  3643.  * Given:
  3644.  *      iV: Initial vector, 64 bits (8 bytes) long.
  3645.  *      Dn: the nth chunk of 64 bits (8 bytes) of data to encrypt (decrypt).
  3646.  *      On: the nth chunk of 64 bits (8 bytes) of encrypted (decrypted) output.
  3647.  *
  3648.  *      V0 = DES-e(DES-d(DES-e(iV, key1),key2),key3)
  3649.  *      V(n+1) = DES-e(DES-d(DES-e(Vn, key1),key2),key3)
  3650.  *      On = Dn ^ Vn
  3651.  */
  3652. void
  3653. des3_ofb64_encrypt(s, c)
  3654.     register unsigned char *s;
  3655.     int c;
  3656. {
  3657.     register struct des3_stinfo *stp = &des3_fb[OFB].streams[DIR_ENCRYPT-1];
  3658.     register int index;
  3659.  
  3660.     index = stp->str_index;
  3661.     while (c-- > 0) {
  3662.         if (index == sizeof(Block)) {
  3663.             Block b;
  3664. #ifdef LIBDES
  3665.             des_ecb3_encrypt(stp->str_feed, b, stp->str_sched[0],
  3666.                              stp->str_sched[1], stp->str_sched[2], 1);
  3667. #else /* LIBDES */
  3668.             des_ecb_encrypt(stp->str_output, b,
  3669.                              stp->str_sched[0], 1);
  3670.             des_ecb_encrypt(stp->str_output, b,
  3671.                              stp->str_sched[1], 0);
  3672.             des_ecb_encrypt(stp->str_output, b,
  3673.                              stp->str_sched[2], 1);
  3674. #endif /* LIBDES */
  3675.             memcpy(stp->str_feed,b,sizeof(Block));
  3676.             index = 0;
  3677.         }
  3678.         *s++ ^= stp->str_feed[index];
  3679.         index++;
  3680.     }
  3681.     stp->str_index = index;
  3682. }
  3683.  
  3684. int
  3685. des3_ofb64_decrypt(data)
  3686.     int data;
  3687. {
  3688.     register struct des3_stinfo *stp = &des3_fb[OFB].streams[DIR_DECRYPT-1];
  3689.     int index;
  3690.  
  3691.     if (data == -1) {
  3692.         /*
  3693.         * Back up one byte.  It is assumed that we will
  3694.         * never back up more than one byte.  If we do, this
  3695.         * may or may not work.
  3696.         */
  3697.         if (stp->str_index)
  3698.             --stp->str_index;
  3699.         return(0);
  3700.     }
  3701.  
  3702.     index = stp->str_index++;
  3703.     if (index == sizeof(Block)) {
  3704.         Block b;
  3705. #ifdef LIBDES
  3706.         des_ecb3_encrypt(stp->str_feed, b, stp->str_sched[0],
  3707.                           stp->str_sched[1], stp->str_sched[2], 1);
  3708. #else /* LIBDES */
  3709.             des_ecb_encrypt(stp->str_output, b,
  3710.                              stp->str_sched[0], 1);
  3711.             des_ecb_encrypt(stp->str_output, b,
  3712.                              stp->str_sched[1], 0);
  3713.             des_ecb_encrypt(stp->str_output, b,
  3714.                              stp->str_sched[2], 1);
  3715. #endif /* LIBDES */
  3716.         memcpy(stp->str_feed, b, sizeof(Block));
  3717.         stp->str_index = 1;     /* Next time will be 1 */
  3718.         index = 0;              /* But now use 0 */
  3719.     }
  3720.  
  3721.     return(data ^ stp->str_feed[index]);
  3722. }
  3723. #endif /* CK_DES */
  3724.  
  3725. #ifdef CK_CAST
  3726. /*-
  3727.  * Copyright (c) 1991, 1993
  3728.  *      The Regents of the University of California.  All rights reserved.
  3729.  *
  3730.  * Redistribution and use in source and binary forms, with or without
  3731.  * modification, are permitted provided that the following conditions
  3732.  * are met:
  3733.  * 1. Redistributions of source code must retain the above copyright
  3734.  *    notice, this list of conditions and the following disclaimer.
  3735.  * 2. Redistributions in binary form must reproduce the above copyright
  3736.  *    notice, this list of conditions and the following disclaimer in the
  3737.  *    documentation and/or other materials provided with the distribution.
  3738.  * 3. All advertising materials mentioning features or use of this software
  3739.  *    must display the following acknowledgement:
  3740.  *      This product includes software developed by the University of
  3741.  *      California, Berkeley and its contributors.
  3742.  * 4. Neither the name of the University nor the names of its contributors
  3743.  *    may be used to endorse or promote products derived from this software
  3744.  *    without specific prior written permission.
  3745.  *
  3746.  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
  3747.  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  3748.  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  3749.  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
  3750.  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  3751.  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  3752.  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  3753.  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  3754.  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  3755.  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  3756.  * SUCH DAMAGE.
  3757.  */
  3758.  
  3759. /*
  3760.  * Copyright (c) 1997 Stanford University
  3761.  *
  3762.  * Permission to use, copy, modify, distribute, and sell this software and
  3763.  * its documentation for any purpose is hereby granted without fee, provided
  3764.  * that the above copyright notices and this permission notice appear in
  3765.  * all copies of the software and related documentation.
  3766.  *
  3767.  * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
  3768.  * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
  3769.  * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
  3770.  *
  3771.  * IN NO EVENT SHALL STANFORD BE LIABLE FOR ANY SPECIAL, INCIDENTAL,
  3772.  * INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER
  3773.  * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF
  3774.  * THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT
  3775.  * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  3776.  */
  3777.  
  3778. #include <stdio.h>
  3779. #ifdef  __STDC__
  3780. #include <stdlib.h>
  3781. #endif
  3782.  
  3783. /*
  3784.  * cast.h
  3785.  * Author: Tom Wu
  3786.  *
  3787.  * Type and function declarations for CAST.
  3788.  */
  3789.  
  3790. #ifndef _CAST_H_
  3791. #define _CAST_H_
  3792.  
  3793. #ifndef P
  3794. #ifdef __STDC__
  3795. #define P(x) x
  3796. #else
  3797. #define P(x) ()
  3798. #endif /* __STDC__ */
  3799. #endif /* P */
  3800.  
  3801. #ifndef LITTLE_ENDIAN
  3802. #ifndef BIG_ENDIAN
  3803. #ifndef WORDS_BIGENDIAN
  3804. #define LITTLE_ENDIAN 1
  3805. #endif /* WORDS_BIGENDIAN */
  3806. #endif /* BIG_ENDIAN */
  3807. #endif /* LITTLE_ENDIAN */
  3808.  
  3809. typedef unsigned int uint32;    /* Must be 32 bits */
  3810. typedef uint32 * uint32p;
  3811. typedef unsigned char uint8;
  3812. typedef uint8 * uint8p;
  3813.  
  3814. typedef struct {
  3815.   struct CastSubkeyPair {
  3816.     uint32 Km;
  3817.     uint32 Kr;
  3818.   } K[16];
  3819.   int ksize;
  3820. } CastKeySched;
  3821.  
  3822. /*
  3823.  * cast*_key_sched(schedule, key)
  3824.  *
  3825.  * Initializes the CAST key schedule "schedule" according to the given key.
  3826.  * The different setup routines accept different length keys:
  3827.  *
  3828.  *   ck_cast5_40_key_sched: 40-bit/5-byte (12 round) keys
  3829.  *   ck_cast5_64_key_sched: 64-bit/8-byte (12 round) keys
  3830.  *   ck_cast5_80_key_sched: 80-bit/10-byte (12 round) keys
  3831.  *   ck_cast128_key_sched: 128-bit/16-byte (16 round) keys
  3832.  */
  3833.  
  3834. extern void ck_cast5_40_key_sched P((CastKeySched *, uint8 *));
  3835. extern void ck_cast5_64_key_sched P((CastKeySched *, uint8 *));
  3836. extern void ck_cast5_80_key_sched P((CastKeySched *, uint8 *));
  3837. extern void  ck_cast128_key_sched P((CastKeySched *, uint8 *));
  3838.  
  3839. /*
  3840.  * ck_cast_ecb_encrypt(output, input, schedule, mode)
  3841.  * ck_cast_ecb_crypt(data, schedule, mode)
  3842.  *
  3843.  * Encrypts the 64-bit "input" according to the CAST key schedule
  3844.  * "schedule" and places the result in "output".  If "mode" is 0,
  3845.  * ck_cast_ecb_encrypt will encrypt, otherwise it will decrypt.
  3846.  * "Output" and "input" can point to the same memory, in which case
  3847.  * en/decryption will be performed in place.
  3848.  *
  3849.  * ck_cast_ecb_crypt accepts input in the form of an array of two
  3850.  * 32-bit words and performs encryption/decryption in place.
  3851.  */
  3852.  
  3853. extern void ck_cast_ecb_encrypt P((uint8 *, uint8 *, CastKeySched *, int));
  3854. extern void ck_cast_ecb_crypt P((uint32 *, CastKeySched *, int));
  3855.  
  3856. #endif /* CAST_H */
  3857.  
  3858. extern encrypt_debug_mode;
  3859.  
  3860. #define CFB_40  0
  3861. #define OFB_40  1
  3862. #ifdef CAST_EXPORT_ENCRYPTION
  3863. #define FB_CNT  2
  3864. #else
  3865. #define CFB_128 2
  3866. #define OFB_128 3
  3867. #define FB_CNT  4
  3868. #endif
  3869.  
  3870. #define NO_SEND_IV      1
  3871. #define NO_RECV_IV      2
  3872. #define NO_KEYID        4
  3873. #define IN_PROGRESS     (NO_SEND_IV|NO_RECV_IV|NO_KEYID)
  3874. #define SUCCESS         0
  3875. #define cFAILED         -1
  3876.  
  3877.  
  3878. struct cast_fb {
  3879.         Block temp_feed;
  3880.         unsigned char fb_feed[64];
  3881.         int key_isset;
  3882.         int need_start;
  3883.         int state[2];
  3884.         struct cast_stinfo {
  3885.                 Block           str_output;
  3886.                 Block           str_feed;
  3887.                 Block           str_iv;
  3888.                 CastKeySched    str_sched;
  3889.                 int             str_index;
  3890.         } streams[2];
  3891. };
  3892.  
  3893. static struct cast_fb cast_fb[FB_CNT];
  3894.  
  3895. #define FB64_IV         1
  3896. #define FB64_IV_OK      2
  3897. #define FB64_IV_BAD     3
  3898.  
  3899.  
  3900. static void cast_fb64_stream_iv P((Block, struct cast_stinfo *));
  3901. static void cast_fb64_init P((struct cast_fb *));
  3902. static int cast_fb64_start P((struct cast_fb *, int, int));
  3903. static int cast_fb64_is P((unsigned char *, int, struct cast_fb *));
  3904. static int cast_fb64_reply P((unsigned char *, int, struct cast_fb *));
  3905. static int cast_fb64_session P((Session_Key *, int, struct cast_fb *, int));
  3906. static void cast_fb64_stream_key P((Block, struct cast_stinfo *, int));
  3907. static int cast_fb64_keyid P((int, unsigned char *, int *, struct cast_fb *));
  3908. static void _cast_cfb64_encrypt P((unsigned char *,int, struct cast_stinfo *));
  3909. static int _cast_cfb64_decrypt P((int, struct cast_stinfo *));
  3910. static void _cast_ofb64_encrypt P((unsigned char *,int, struct cast_stinfo *));
  3911. static int _cast_ofb64_decrypt P((int, struct cast_stinfo *));
  3912.  
  3913. #ifndef CAST_EXPORT_ENCRYPTION
  3914. void
  3915. cast_cfb64_init(server)
  3916.         int server;
  3917. {
  3918.         cast_fb64_init(&cast_fb[CFB_128]);
  3919.         cast_fb[CFB_128].fb_feed[4] = ENCTYPE_CAST128_CFB64;
  3920. }
  3921.  
  3922. void
  3923. cast_ofb64_init(server)
  3924.         int server;
  3925. {
  3926.         cast_fb64_init(&cast_fb[OFB_128]);
  3927.         cast_fb[OFB_128].fb_feed[4] = ENCTYPE_CAST128_OFB64;
  3928. }
  3929. #endif
  3930.  
  3931. void
  3932. castexp_cfb64_init(server)
  3933.         int server;
  3934. {
  3935.         cast_fb64_init(&cast_fb[CFB_40]);
  3936.         cast_fb[CFB_40].fb_feed[4] = ENCTYPE_CAST5_40_CFB64;
  3937. }
  3938.  
  3939. void
  3940. castexp_ofb64_init(server)
  3941.         int server;
  3942. {
  3943.         cast_fb64_init(&cast_fb[OFB_40]);
  3944.         cast_fb[OFB_40].fb_feed[4] = ENCTYPE_CAST5_40_OFB64;
  3945. }
  3946.  
  3947. static void
  3948. cast_fb64_init(fbp)
  3949.     register struct cast_fb *fbp;
  3950. {
  3951.     memset((void *)fbp, 0, sizeof(*fbp));
  3952.     fbp->key_isset = 0;
  3953.     fbp->state[0] = fbp->state[1] = cFAILED;
  3954.     fbp->fb_feed[0] = IAC;
  3955.     fbp->fb_feed[1] = SB;
  3956.     fbp->fb_feed[2] = TELOPT_ENCRYPTION;
  3957.     fbp->fb_feed[3] = ENCRYPT_IS;
  3958. }
  3959.  
  3960. /*
  3961.  * Returns:
  3962.  *      -1: some error.  Negotiation is done, encryption not ready.
  3963.  *       0: Successful, initial negotiation all done.
  3964.  *       1: successful, negotiation not done yet.
  3965.  *       2: Not yet.  Other things (like getting the key from
  3966.  *          Kerberos) have to happen before we can continue.
  3967.  */
  3968. #ifndef CAST_EXPORT_ENCRYPTION
  3969. int
  3970. cast_cfb64_start(dir, server)
  3971.     int dir;
  3972.     int server;
  3973. {
  3974.     return(cast_fb64_start(&cast_fb[CFB_128], dir, server));
  3975. }
  3976.  
  3977. int
  3978. cast_ofb64_start(dir, server)
  3979.     int dir;
  3980.     int server;
  3981. {
  3982.     return(cast_fb64_start(&cast_fb[OFB_128], dir, server));
  3983. }
  3984. #endif
  3985.  
  3986. int
  3987. castexp_cfb64_start(dir, server)
  3988.     int dir;
  3989.     int server;
  3990. {
  3991.     return(cast_fb64_start(&cast_fb[CFB_40], dir, server));
  3992. }
  3993.  
  3994. int
  3995. castexp_ofb64_start(dir, server)
  3996.     int dir;
  3997.     int server;
  3998. {
  3999.     return(cast_fb64_start(&cast_fb[OFB_40], dir, server));
  4000. }
  4001.  
  4002. static int
  4003. cast_fb64_start(fbp, dir, server)
  4004.     struct cast_fb *fbp;
  4005.     int dir;
  4006.     int server;
  4007. {
  4008.     Block b;
  4009.     int x;
  4010.     unsigned char *p;
  4011.     register int state;
  4012.  
  4013.     switch (dir) {
  4014.     case DIR_DECRYPT:
  4015.         /*
  4016.          * This is simply a request to have the other side
  4017.          * start output (our input).  He will negotiate an
  4018.          * IV so we need not look for it.
  4019.          */
  4020.         state = fbp->state[dir-1];
  4021.         if (state == cFAILED)
  4022.             state = IN_PROGRESS;
  4023.         break;
  4024.  
  4025.     case DIR_ENCRYPT:
  4026.         state = fbp->state[dir-1];
  4027.         if (state == cFAILED)
  4028.             state = IN_PROGRESS;
  4029.         else if ((state & NO_SEND_IV) == 0)
  4030.             break;
  4031.  
  4032.         if (!fbp->key_isset) {
  4033.             fbp->need_start = 1;
  4034.             break;
  4035.         }
  4036.         state &= ~NO_SEND_IV;
  4037.         state |= NO_RECV_IV;
  4038. #ifdef DEBUG
  4039.         if (encrypt_debug_mode)
  4040.             printf("Creating new feed\r\n");
  4041. #endif
  4042.         /*
  4043.          * Create a random feed and send it over.
  4044.          */
  4045.         ck_cast_ecb_encrypt(fbp->temp_feed, fbp->temp_feed,
  4046.                           &fbp->streams[dir-1].str_sched, 0);
  4047.  
  4048.         p = fbp->fb_feed + 3;
  4049.         *p++ = ENCRYPT_IS;
  4050.         p++;
  4051.         *p++ = FB64_IV;
  4052.         for (x = 0; x < sizeof(Block); ++x) {
  4053.             if ((*p++ = fbp->temp_feed[x]) == IAC)
  4054.                 *p++ = IAC;
  4055.         }
  4056.         *p++ = IAC;
  4057.         *p++ = SE;
  4058.  
  4059.         ttol(fbp->fb_feed, p - fbp->fb_feed);
  4060.         break;
  4061.     default:
  4062.         return(cFAILED);
  4063.     }
  4064.     return(fbp->state[dir-1] = state);
  4065. }
  4066.  
  4067. /*
  4068.  * Returns:
  4069.  *      -1: some error.  Negotiation is done, encryption not ready.
  4070.  *       0: Successful, initial negotiation all done.
  4071.  *       1: successful, negotiation not done yet.
  4072.  */
  4073. #ifndef CAST_EXPORT_ENCRYPTION
  4074. int
  4075. cast_cfb64_is(data, cnt)
  4076.     unsigned char *data;
  4077.     int cnt;
  4078. {
  4079.     return(cast_fb64_is(data, cnt, &cast_fb[CFB_128]));
  4080. }
  4081.  
  4082. int
  4083. cast_ofb64_is(data, cnt)
  4084.     unsigned char *data;
  4085.     int cnt;
  4086. {
  4087.     return(cast_fb64_is(data, cnt, &cast_fb[OFB_128]));
  4088. }
  4089. #endif
  4090.  
  4091. int
  4092. castexp_cfb64_is(data, cnt)
  4093.     unsigned char *data;
  4094.     int cnt;
  4095. {
  4096.     return(cast_fb64_is(data, cnt, &cast_fb[CFB_40]));
  4097. }
  4098.  
  4099. int
  4100. castexp_ofb64_is(data, cnt)
  4101.     unsigned char *data;
  4102.     int cnt;
  4103. {
  4104.     return(cast_fb64_is(data, cnt, &cast_fb[OFB_40]));
  4105. }
  4106.  
  4107. static int
  4108. cast_fb64_is(data, cnt, fbp)
  4109.     unsigned char *data;
  4110.     int cnt;
  4111.     struct cast_fb *fbp;
  4112. {
  4113.     int x;
  4114.     unsigned char *p;
  4115.     Block b;
  4116.     register int state = fbp->state[DIR_DECRYPT-1];
  4117.  
  4118.     if (cnt-- < 1)
  4119.         goto failure;
  4120.  
  4121. #ifdef CK_SSL
  4122.     if (!TELOPT_SB(TELOPT_START_TLS).start_tls.me_follows)
  4123. #endif /* CK_SSL */
  4124.     switch (*data++) {
  4125.     case FB64_IV:
  4126.         if (cnt != sizeof(Block)) {
  4127. #ifdef DEBUG
  4128.             if (encrypt_debug_mode)
  4129.                 printf("FB64: initial vector failed on size\r\n");
  4130. #endif
  4131.             state = cFAILED;
  4132.             goto failure;
  4133.         }
  4134. #ifdef DEBUG
  4135.         if (encrypt_debug_mode)
  4136.             printf("FB64: initial vector received\r\n");
  4137.  
  4138.         if (encrypt_debug_mode)
  4139.             printf("Initializing Decrypt stream\r\n");
  4140. #endif
  4141.         cast_fb64_stream_iv((void *)data, &fbp->streams[DIR_DECRYPT-1]);
  4142.  
  4143.         p = fbp->fb_feed + 3;
  4144.         *p++ = ENCRYPT_REPLY;
  4145.         p++;
  4146.         *p++ = FB64_IV_OK;
  4147.         *p++ = IAC;
  4148.         *p++ = SE;
  4149.  
  4150.         ttol(fbp->fb_feed, p - fbp->fb_feed);
  4151.         state = IN_PROGRESS;
  4152.         break;
  4153.  
  4154.     default:
  4155.         /* unknown option type */
  4156.         /* FALL THROUGH */
  4157.       failure:
  4158.         /*
  4159.         * We failed.  Send an FB64_IV_BAD option
  4160.         * to the other side so it will know that
  4161.         * things failed.
  4162.         */
  4163.         p = fbp->fb_feed + 3;
  4164.         *p++ = ENCRYPT_REPLY;
  4165.         p++;
  4166.         *p++ = FB64_IV_BAD;
  4167.         *p++ = IAC;
  4168.         *p++ = SE;
  4169.  
  4170.         ttol(fbp->fb_feed, p - fbp->fb_feed);
  4171.         break;
  4172.     }
  4173.     return(fbp->state[DIR_DECRYPT-1] = state);
  4174. }
  4175.  
  4176. /*
  4177.  * Returns:
  4178.  *      -1: some error.  Negotiation is done, encryption not ready.
  4179.  *       0: Successful, initial negotiation all done.
  4180.  *       1: successful, negotiation not done yet.
  4181.  */
  4182. #ifndef CAST_EXPORT_ENCRYPTION
  4183. int
  4184. cast_cfb64_reply(data, cnt)
  4185.     unsigned char *data;
  4186.     int cnt;
  4187. {
  4188.     return(cast_fb64_reply(data, cnt, &cast_fb[CFB_128]));
  4189. }
  4190.  
  4191. int
  4192. cast_ofb64_reply(data, cnt)
  4193.     unsigned char *data;
  4194.     int cnt;
  4195. {
  4196.     return(cast_fb64_reply(data, cnt, &cast_fb[OFB_128]));
  4197. }
  4198. #endif
  4199.  
  4200. int
  4201. castexp_cfb64_reply(data, cnt)
  4202.     unsigned char *data;
  4203.     int cnt;
  4204. {
  4205.     return(cast_fb64_reply(data, cnt, &cast_fb[CFB_40]));
  4206. }
  4207.  
  4208. int
  4209. castexp_ofb64_reply(data, cnt)
  4210.     unsigned char *data;
  4211.     int cnt;
  4212. {
  4213.     return(cast_fb64_reply(data, cnt, &cast_fb[OFB_40]));
  4214. }
  4215.  
  4216. static int
  4217. cast_fb64_reply(data, cnt, fbp)
  4218.     unsigned char *data;
  4219.     int cnt;
  4220.     struct cast_fb *fbp;
  4221. {
  4222.     int x;
  4223.     unsigned char *p;
  4224.     Block b;
  4225.     register int state = fbp->state[DIR_ENCRYPT-1];
  4226.  
  4227.     if (cnt-- < 1)
  4228.         goto failure;
  4229.  
  4230.     switch (*data++) {
  4231.     case FB64_IV_OK:
  4232.         cast_fb64_stream_iv(fbp->temp_feed, &fbp->streams[DIR_ENCRYPT-1]);
  4233.         if (state == cFAILED)
  4234.             state = IN_PROGRESS;
  4235.         state &= ~NO_RECV_IV;
  4236.         encrypt_send_keyid(DIR_ENCRYPT, (unsigned char *)"\0", 1, 1);
  4237.         break;
  4238.  
  4239.     case FB64_IV_BAD:
  4240.         memset(fbp->temp_feed, 0, sizeof(Block));
  4241.         cast_fb64_stream_iv(fbp->temp_feed, &fbp->streams[DIR_ENCRYPT-1]);
  4242.         state = cFAILED;
  4243.         break;
  4244.  
  4245.     default:
  4246. #if 0
  4247.         if (encrypt_debug_mode) {
  4248.             printf("Unknown option type: %d\r\n", data[-1]);
  4249.             printd(data, cnt);
  4250.             printf("\r\n");
  4251.         }
  4252. #endif
  4253.         /* FALL THROUGH */
  4254.       failure:
  4255.         state = cFAILED;
  4256.         break;
  4257.     }
  4258.     return(fbp->state[DIR_ENCRYPT-1] = state);
  4259. }
  4260.  
  4261. #ifndef CAST_EXPORT_ENCRYPTION
  4262. int
  4263. cast_cfb64_session(key, server)
  4264.     Session_Key *key;
  4265.     int server;
  4266. {
  4267.     return(cast_fb64_session(key, server, &cast_fb[CFB_128], 1));
  4268. }
  4269.  
  4270. int
  4271. cast_ofb64_session(key, server)
  4272.     Session_Key *key;
  4273.     int server;
  4274. {
  4275.     return(cast_fb64_session(key, server, &cast_fb[OFB_128], 1));
  4276. }
  4277. #endif
  4278.  
  4279. int
  4280. castexp_cfb64_session(key, server)
  4281.     Session_Key *key;
  4282.     int server;
  4283. {
  4284.     return(cast_fb64_session(key, server, &cast_fb[CFB_40], 0));
  4285. }
  4286.  
  4287. int
  4288. castexp_ofb64_session(key, server)
  4289.     Session_Key *key;
  4290.     int server;
  4291. {
  4292.     return(cast_fb64_session(key, server, &cast_fb[OFB_40], 0));
  4293. }
  4294.  
  4295. #define CAST128_KEYLEN  16      /* 128 bits */
  4296. #define CAST5_40_KEYLEN  5      /*  40 bits */
  4297.  
  4298. static int
  4299. cast_fb64_session(key, server, fbp, fs)
  4300.     Session_Key *key;
  4301.     int server;
  4302.     struct cast_fb *fbp;
  4303.     int fs;
  4304. {
  4305.     int klen;
  4306.     unsigned char * kptr;
  4307.  
  4308.     if(fs)
  4309.         klen = CAST128_KEYLEN;
  4310.     else
  4311.         klen = CAST5_40_KEYLEN;
  4312.  
  4313.     if (!key || key->length < klen) {
  4314.         CHAR buf[80];
  4315.         sprintf(buf,"Can't set CAST session key (%d < %d)",
  4316.                 key ? key->length : 0, klen);                   /* safe */
  4317. #ifdef DEBUG
  4318.         if (encrypt_debug_mode)
  4319.             printf("%s\r\n",buf);
  4320. #endif
  4321.         debug(F110,"cast_fb64_session",buf,0);
  4322.         return(cFAILED);
  4323.     }
  4324.     if(key->length < 2 * klen)
  4325.         kptr = key->data;
  4326.     else
  4327.         kptr = key->data + klen;
  4328.  
  4329.     if(server) {
  4330.         cast_fb64_stream_key(kptr, &fbp->streams[DIR_ENCRYPT-1], fs);
  4331.         cast_fb64_stream_key(key->data, &fbp->streams[DIR_DECRYPT-1], fs);
  4332.     }
  4333.     else {
  4334.         cast_fb64_stream_key(kptr, &fbp->streams[DIR_DECRYPT-1], fs);
  4335.         cast_fb64_stream_key(key->data, &fbp->streams[DIR_ENCRYPT-1], fs);
  4336.     }
  4337.  
  4338.     /* Stuff leftovers into the feed */
  4339.     if(key->length >= 2 * klen + sizeof(Block))
  4340.         memcpy(fbp->temp_feed, key->data + 2 * klen, sizeof(Block));
  4341.     else {
  4342. #ifdef COMMENT
  4343.         /* This is a better way of erasing the password */
  4344.         /* but we do not want to link in libsrp         */
  4345.         t_random(fbp->temp_feed, sizeof(Block));
  4346. #else
  4347.         memset(fbp->temp_feed, 0, sizeof(Block));
  4348. #endif
  4349.     }
  4350.  
  4351.     fbp->key_isset = 1;
  4352.     /*
  4353.     * Now look to see if cast_fb64_start() was was waiting for
  4354.     * the key to show up.  If so, go ahead an call it now
  4355.     * that we have the key.
  4356.     */
  4357.     if (fbp->need_start) {
  4358.         fbp->need_start = 0;
  4359.         cast_fb64_start(fbp, DIR_ENCRYPT, server);
  4360.     }
  4361.     return(0);
  4362. }
  4363.  
  4364. /*
  4365.  * We only accept a keyid of 0.  If we get a keyid of
  4366.  * 0, then mark the state as SUCCESS.
  4367.  */
  4368. #ifndef CAST_EXPORT_ENCRYPTION
  4369. int
  4370. cast_cfb64_keyid(dir, kp, lenp)
  4371.     int dir, *lenp;
  4372.     unsigned char *kp;
  4373. {
  4374.     return(cast_fb64_keyid(dir, kp, lenp, &cast_fb[CFB_128]));
  4375. }
  4376.  
  4377. int
  4378. cast_ofb64_keyid(dir, kp, lenp)
  4379.     int dir, *lenp;
  4380.     unsigned char *kp;
  4381. {
  4382.     return(cast_fb64_keyid(dir, kp, lenp, &cast_fb[OFB_128]));
  4383. }
  4384. #endif
  4385.  
  4386. int
  4387. castexp_cfb64_keyid(dir, kp, lenp)
  4388.     int dir, *lenp;
  4389.     unsigned char *kp;
  4390. {
  4391.     return(cast_fb64_keyid(dir, kp, lenp, &cast_fb[CFB_40]));
  4392. }
  4393.  
  4394. int
  4395. castexp_ofb64_keyid(dir, kp, lenp)
  4396.     int dir, *lenp;
  4397.     unsigned char *kp;
  4398. {
  4399.     return(cast_fb64_keyid(dir, kp, lenp, &cast_fb[OFB_40]));
  4400. }
  4401.  
  4402. static int
  4403. cast_fb64_keyid(dir, kp, lenp, fbp)
  4404.     int dir, *lenp;
  4405.     unsigned char *kp;
  4406.     struct cast_fb *fbp;
  4407. {
  4408.     register int state = fbp->state[dir-1];
  4409.  
  4410.     if (*lenp != 1 || (*kp != '\0')) {
  4411.         *lenp = 0;
  4412.         return(state);
  4413.     }
  4414.  
  4415.     if (state == cFAILED)
  4416.         state = IN_PROGRESS;
  4417.  
  4418.     state &= ~NO_KEYID;
  4419.  
  4420.     return(fbp->state[dir-1] = state);
  4421. }
  4422.  
  4423. static void
  4424. cast_fb64_printsub(data, cnt, buf, buflen, type)
  4425.     unsigned char *data, *buf, *type;
  4426.     int cnt, buflen;
  4427. {
  4428.     char lbuf[64];
  4429.     register int i;
  4430.     char *cp;
  4431.  
  4432.     buf[buflen-1] = '\0';               /* make sure it's NULL terminated */
  4433.     buflen -= 1;
  4434.  
  4435.     switch(data[2]) {
  4436.     case FB64_IV:
  4437.         sprintf(lbuf, "%s_IV", type);
  4438.         cp = lbuf;
  4439.         goto common;
  4440.  
  4441.     case FB64_IV_OK:
  4442.         sprintf(lbuf, "%s_IV_OK", type);
  4443.         cp = lbuf;
  4444.         goto common;
  4445.  
  4446.     case FB64_IV_BAD:
  4447.         sprintf(lbuf, "%s_IV_BAD", type);
  4448.         cp = lbuf;
  4449.         goto common;
  4450.  
  4451.     default:
  4452.         sprintf(lbuf, " %d (unknown)", data[2]);
  4453.         cp = lbuf;
  4454.       common:
  4455.         for (; (buflen > 0) && (*buf = *cp++); buf++)
  4456.             buflen--;
  4457.         for (i = 3; i < cnt; i++) {
  4458.             sprintf(lbuf, " %d", data[i]);
  4459.             for (cp = lbuf; (buflen > 0) && (*buf = *cp++); buf++)
  4460.                 buflen--;
  4461.         }
  4462.         break;
  4463.     }
  4464. }
  4465.  
  4466. void
  4467. cast_cfb64_printsub(data, cnt, buf, buflen)
  4468.     unsigned char *data, *buf;
  4469.     int cnt, buflen;
  4470. {
  4471.     cast_fb64_printsub(data, cnt, buf, buflen, "CFB64");
  4472. }
  4473.  
  4474. void
  4475. cast_ofb64_printsub(data, cnt, buf, buflen)
  4476.     unsigned char *data, *buf;
  4477.     int cnt, buflen;
  4478. {
  4479.     cast_fb64_printsub(data, cnt, buf, buflen, "OFB64");
  4480. }
  4481.  
  4482. static void
  4483. cast_fb64_stream_iv(seed, stp)
  4484.     Block seed;
  4485.     register struct cast_stinfo *stp;
  4486. {
  4487.     memcpy((void *)stp->str_iv, (void *)seed, sizeof(Block));
  4488.     memcpy((void *)stp->str_output, (void *)seed, sizeof(Block));
  4489.  
  4490.     stp->str_index = sizeof(Block);
  4491. }
  4492.  
  4493. static void
  4494. cast_fb64_stream_key(key, stp, fs)
  4495.     unsigned char * key;
  4496.     register struct cast_stinfo *stp;
  4497.     int fs;
  4498. {
  4499. #ifndef CAST_EXPORT_ENCRYPTION
  4500.     if(fs)
  4501.         ck_cast128_key_sched(&stp->str_sched, key);
  4502.     else
  4503. #endif
  4504.         ck_cast5_40_key_sched(&stp->str_sched, key);
  4505.  
  4506.     memcpy((void *)stp->str_output, (void *)stp->str_iv, sizeof(Block));
  4507.  
  4508.     stp->str_index = sizeof(Block);
  4509. }
  4510.  
  4511. /*
  4512.  * CAST 64 bit Cipher Feedback
  4513.  *
  4514.  *     key --->+------+
  4515.  *          +->| CAST |--+
  4516.  *          |  +------+  |
  4517.  *          |            v
  4518.  *  INPUT --(---------->(+)+---> DATA
  4519.  *          |              |
  4520.  *          +--------------+
  4521.  *
  4522.  *
  4523.  * Given:
  4524.  *      iV: Initial vector, 64 bits (8 bytes) long.
  4525.  *      Dn: the nth chunk of 64 bits (8 bytes) of data to encrypt (decrypt).
  4526.  *      On: the nth chunk of 64 bits (8 bytes) of encrypted (decrypted) output.
  4527.  *
  4528.  *      V0 = CAST(iV, key)
  4529.  *      On = Dn ^ Vn
  4530.  *      V(n+1) = CAST(On, key)
  4531.  */
  4532. #ifndef CAST_EXPORT_ENCRYPTION
  4533. void
  4534. cast_cfb64_encrypt(s, c)
  4535.         register unsigned char *s;
  4536.         int c;
  4537. {
  4538.     _cast_cfb64_encrypt(s, c, &cast_fb[CFB_128].streams[DIR_ENCRYPT-1]);
  4539. }
  4540. #endif
  4541.  
  4542. void
  4543. castexp_cfb64_encrypt(s, c)
  4544.     register unsigned char *s;
  4545.     int c;
  4546. {
  4547.     _cast_cfb64_encrypt(s, c, &cast_fb[CFB_40].streams[DIR_ENCRYPT-1]);
  4548. }
  4549.  
  4550. static void
  4551. _cast_cfb64_encrypt(s, c, stp)
  4552.     register unsigned char *s;
  4553.     int c;
  4554.     register struct cast_stinfo *stp;
  4555. {
  4556.     register int index;
  4557.  
  4558.     index = stp->str_index;
  4559.     while (c-- > 0) {
  4560.         if (index == sizeof(Block)) {
  4561.             Block b;
  4562.             ck_cast_ecb_encrypt(b, stp->str_output, &stp->str_sched, 0);
  4563.             memcpy((void *)stp->str_feed, (void *)b, sizeof(Block));
  4564.             index = 0;
  4565.         }
  4566.  
  4567.         /* On encryption, we store (feed ^ data) which is cypher */
  4568.         *s = stp->str_output[index] = (stp->str_feed[index] ^ *s);
  4569.         s++;
  4570.         index++;
  4571.     }
  4572.     stp->str_index = index;
  4573. }
  4574.  
  4575. #ifndef CAST_EXPORT_ENCRYPTION
  4576. int
  4577. cast_cfb64_decrypt(data)
  4578.     int data;
  4579. {
  4580.     return _cast_cfb64_decrypt(data, &cast_fb[CFB_128].streams[DIR_DECRYPT-1]);
  4581. }
  4582. #endif
  4583.  
  4584. int
  4585. castexp_cfb64_decrypt(data)
  4586.     int data;
  4587. {
  4588.     return _cast_cfb64_decrypt(data, &cast_fb[CFB_40].streams[DIR_DECRYPT-1]);
  4589. }
  4590.  
  4591. static int
  4592. _cast_cfb64_decrypt(data, stp)
  4593.     int data;
  4594.     register struct cast_stinfo *stp;
  4595. {
  4596.     int index;
  4597.  
  4598.     if (data == -1) {
  4599.         /*
  4600.         * Back up one byte.  It is assumed that we will
  4601.         * never back up more than one byte.  If we do, this
  4602.         * may or may not work.
  4603.         */
  4604.         if (stp->str_index)
  4605.             --stp->str_index;
  4606.         return(0);
  4607.     }
  4608.  
  4609.     index = stp->str_index++;
  4610.     if (index == sizeof(Block)) {
  4611.         Block b;
  4612.         ck_cast_ecb_encrypt(b, stp->str_output, &stp->str_sched, 0);
  4613.         memcpy((void *)stp->str_feed, (void *)b, sizeof(Block));
  4614.         stp->str_index = 1;     /* Next time will be 1 */
  4615.         index = 0;              /* But now use 0 */
  4616.     }
  4617.  
  4618.     /* On decryption we store (data) which is cypher. */
  4619.     stp->str_output[index] = data;
  4620.     return(data ^ stp->str_feed[index]);
  4621. }
  4622.  
  4623. /*
  4624.  * CAST 64 bit Output Feedback
  4625.  *
  4626.  * key --->+------+
  4627.  *      +->| CAST |--+
  4628.  *      |  +------+  |
  4629.  *      +------------+
  4630.  *                   v
  4631.  *  INPUT --------->(+) ----> DATA
  4632.  *
  4633.  * Given:
  4634.  *      iV: Initial vector, 64 bits (8 bytes) long.
  4635.  *      Dn: the nth chunk of 64 bits (8 bytes) of data to encrypt (decrypt).
  4636.  *      On: the nth chunk of 64 bits (8 bytes) of encrypted (decrypted) output.
  4637.  *
  4638.  *      V0 = CAST(iV, key)
  4639.  *      V(n+1) = CAST(Vn, key)
  4640.  *      On = Dn ^ Vn
  4641.  */
  4642. #ifndef CAST_EXPORT_ENCRYPTION
  4643. void
  4644. cast_ofb64_encrypt(s, c)
  4645.     register unsigned char *s;
  4646.     int c;
  4647. {
  4648.     _cast_ofb64_encrypt(s, c, &cast_fb[OFB_128].streams[DIR_ENCRYPT-1]);
  4649. }
  4650. #endif
  4651.  
  4652. void
  4653. castexp_ofb64_encrypt(s, c)
  4654.     register unsigned char *s;
  4655.     int c;
  4656. {
  4657.   _cast_ofb64_encrypt(s, c, &cast_fb[OFB_40].streams[DIR_ENCRYPT-1]);
  4658. }
  4659.  
  4660. static void
  4661. _cast_ofb64_encrypt(s, c, stp)
  4662.     register unsigned char *s;
  4663.     int c;
  4664.     register struct cast_stinfo *stp;
  4665. {
  4666.     register int index;
  4667.  
  4668.     index = stp->str_index;
  4669.     while (c-- > 0) {
  4670.         if (index == sizeof(Block)) {
  4671.             Block b;
  4672.             ck_cast_ecb_encrypt(b, stp->str_feed, &stp->str_sched, 0);
  4673.             memcpy((void *)stp->str_feed, (void *)b, sizeof(Block));
  4674.             index = 0;
  4675.         }
  4676.         *s++ ^= stp->str_feed[index];
  4677.         index++;
  4678.     }
  4679.     stp->str_index = index;
  4680. }
  4681.  
  4682. #ifndef CAST_EXPORT_ENCRYPTION
  4683. int
  4684. cast_ofb64_decrypt(data)
  4685.     int data;
  4686. {
  4687.     return _cast_ofb64_decrypt(data, &cast_fb[OFB_128].streams[DIR_DECRYPT-1]);
  4688. }
  4689. #endif
  4690.  
  4691. int
  4692. castexp_ofb64_decrypt(data)
  4693.     int data;
  4694. {
  4695.     return _cast_ofb64_decrypt(data, &cast_fb[OFB_40].streams[DIR_DECRYPT-1]);
  4696. }
  4697.  
  4698. static int
  4699. _cast_ofb64_decrypt(data, stp)
  4700.     int data;
  4701.     register struct cast_stinfo *stp;
  4702. {
  4703.     int index;
  4704.  
  4705.     if (data == -1) {
  4706.         /*
  4707.         * Back up one byte.  It is assumed that we will
  4708.         * never back up more than one byte.  If we do, this
  4709.         * may or may not work.
  4710.         */
  4711.         if (stp->str_index)
  4712.             --stp->str_index;
  4713.         return(0);
  4714.     }
  4715.  
  4716.     index = stp->str_index++;
  4717.     if (index == sizeof(Block)) {
  4718.         Block b;
  4719.         ck_cast_ecb_encrypt(b, stp->str_feed, &stp->str_sched, 0);
  4720.         memcpy((void *)stp->str_feed, (void *)b, sizeof(Block));
  4721.         stp->str_index = 1;     /* Next time will be 1 */
  4722.         index = 0;              /* But now use 0 */
  4723.     }
  4724.  
  4725.     return(data ^ stp->str_feed[index]);
  4726. }
  4727.  
  4728. /*
  4729.  * Copyright (c) 1997 Stanford University
  4730.  *
  4731.  * Permission to use, copy, modify, distribute, and sell this software and
  4732.  * its documentation for any purpose is hereby granted without fee, provided
  4733.  * that the above copyright notices and this permission notice appear in
  4734.  * all copies of the software and related documentation.
  4735.  *
  4736.  * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
  4737.  * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
  4738.  * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
  4739.  *
  4740.  * IN NO EVENT SHALL STANFORD BE LIABLE FOR ANY SPECIAL, INCIDENTAL,
  4741.  * INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER
  4742.  * RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER OR NOT ADVISED OF
  4743.  * THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF LIABILITY, ARISING OUT
  4744.  * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  4745.  */
  4746.  
  4747. /*
  4748.  * cast.c
  4749.  * Author: Tom Wu
  4750.  *
  4751.  * An implementation of the CAST-128 encryption algorithm, as
  4752.  * specified in RFC 2144.
  4753.  */
  4754.  
  4755. /* The first four S-boxes are for encryption/decryption */
  4756.  
  4757. static uint32 S1[] = {
  4758.   0x30fb40d4, 0x9fa0ff0b, 0x6beccd2f, 0x3f258c7a, 0x1e213f2f, 0x9c004dd3,
  4759.   0x6003e540, 0xcf9fc949, 0xbfd4af27, 0x88bbbdb5, 0xe2034090, 0x98d09675,
  4760.   0x6e63a0e0, 0x15c361d2, 0xc2e7661d, 0x22d4ff8e, 0x28683b6f, 0xc07fd059,
  4761.   0xff2379c8, 0x775f50e2, 0x43c340d3, 0xdf2f8656, 0x887ca41a, 0xa2d2bd2d,
  4762.   0xa1c9e0d6, 0x346c4819, 0x61b76d87, 0x22540f2f, 0x2abe32e1, 0xaa54166b,
  4763.   0x22568e3a, 0xa2d341d0, 0x66db40c8, 0xa784392f, 0x004dff2f, 0x2db9d2de,
  4764.   0x97943fac, 0x4a97c1d8, 0x527644b7, 0xb5f437a7, 0xb82cbaef, 0xd751d159,
  4765.   0x6ff7f0ed, 0x5a097a1f, 0x827b68d0, 0x90ecf52e, 0x22b0c054, 0xbc8e5935,
  4766.   0x4b6d2f7f, 0x50bb64a2, 0xd2664910, 0xbee5812d, 0xb7332290, 0xe93b159f,
  4767.   0xb48ee411, 0x4bff345d, 0xfd45c240, 0xad31973f, 0xc4f6d02e, 0x55fc8165,
  4768.   0xd5b1caad, 0xa1ac2dae, 0xa2d4b76d, 0xc19b0c50, 0x882240f2, 0x0c6e4f38,
  4769.   0xa4e4bfd7, 0x4f5ba272, 0x564c1d2f, 0xc59c5319, 0xb949e354, 0xb04669fe,
  4770.   0xb1b6ab8a, 0xc71358dd, 0x6385c545, 0x110f935d, 0x57538ad5, 0x6a390493,
  4771.   0xe63d37e0, 0x2a54f6b3, 0x3a787d5f, 0x6276a0b5, 0x19a6fcdf, 0x7a42206a,
  4772.   0x29f9d4d5, 0xf61b1891, 0xbb72275e, 0xaa508167, 0x38901091, 0xc6b505eb,
  4773.   0x84c7cb8c, 0x2ad75a0f, 0x874a1427, 0xa2d1936b, 0x2ad286af, 0xaa56d291,
  4774.   0xd7894360, 0x425c750d, 0x93b39e26, 0x187184c9, 0x6c00b32d, 0x73e2bb14,
  4775.   0xa0bebc3c, 0x54623779, 0x64459eab, 0x3f328b82, 0x7718cf82, 0x59a2cea6,
  4776.   0x04ee002e, 0x89fe78e6, 0x3fab0950, 0x325ff6c2, 0x81383f05, 0x6963c5c8,
  4777.   0x76cb5ad6, 0xd49974c9, 0xca180dcf, 0x380782d5, 0xc7fa5cf6, 0x8ac31511,
  4778.   0x35e79e13, 0x47da91d0, 0xf40f9086, 0xa7e2419e, 0x31366241, 0x051ef495,
  4779.   0xaa573b04, 0x4a805d8d, 0x548300d0, 0x00322a3c, 0xbf64cddf, 0xba57a68e,
  4780.   0x75c6372b, 0x50afd341, 0xa7c13275, 0x915a0bf5, 0x6b54bfab, 0x2b0b1426,
  4781.   0xab4cc9d7, 0x449ccd82, 0xf7fbf265, 0xab85c5f3, 0x1b55db94, 0xaad4e324,
  4782.   0xcfa4bd3f, 0x2deaa3e2, 0x9e204d02, 0xc8bd25ac, 0xeadf55b3, 0xd5bd9e98,
  4783.   0xe31231b2, 0x2ad5ad6c, 0x954329de, 0xadbe4528, 0xd8710f69, 0xaa51c90f,
  4784.   0xaa786bf6, 0x22513f1e, 0xaa51a79b, 0x2ad344cc,0x7b5a41f0, 0xd37cfbad,
  4785.   0x1b069505, 0x41ece491, 0xb4c332e6, 0x032268d4, 0xc9600acc, 0xce387e6d,
  4786.   0xbf6bb16c, 0x6a70fb78, 0x0d03d9c9, 0xd4df39de, 0xe01063da, 0x4736f464,
  4787.   0x5ad328d8, 0xb347cc96, 0x75bb0fc3, 0x98511bfb, 0x4ffbcc35, 0xb58bcf6a,
  4788.   0xe11f0abc, 0xbfc5fe4a, 0xa70aec10, 0xac39570a,0x3f04442f, 0x6188b153,
  4789.   0xe0397a2e, 0x5727cb79, 0x9ceb418f, 0x1cacd68d, 0x2ad37c96, 0x0175cb9d,
  4790.   0xc69dff09, 0xc75b65f0, 0xd9db40d8, 0xec0e7779, 0x4744ead4, 0xb11c3274,
  4791.   0xdd24cb9e, 0x7e1c54bd, 0xf01144f9, 0xd2240eb1, 0x9675b3fd, 0xa3ac3755,
  4792.   0xd47c27af, 0x51c85f4d, 0x56907596, 0xa5bb15e6,0x580304f0, 0xca042cf1,
  4793.   0x011a37ea, 0x8dbfaadb, 0x35ba3e4a, 0x3526ffa0, 0xc37b4d09, 0xbc306ed9,
  4794.   0x98a52666, 0x5648f725, 0xff5e569d, 0x0ced63d0, 0x7c63b2cf, 0x700b45e1,
  4795.   0xd5ea50f1, 0x85a92872, 0xaf1fbda7, 0xd4234870, 0xa7870bf3, 0x2d3b4d79,
  4796.   0x42e04198, 0x0cd0ede7, 0x26470db8, 0xf881814c,0x474d6ad7, 0x7c0c5e5c,
  4797.   0xd1231959, 0x381b7298, 0xf5d2f4db, 0xab838653, 0x6e2f1e23, 0x83719c9e,
  4798.   0xbd91e046, 0x9a56456e, 0xdc39200c, 0x20c8c571, 0x962bda1c, 0xe1e696ff,
  4799.   0xb141ab08, 0x7cca89b9, 0x1a69e783, 0x02cc4843, 0xa2f7c579, 0x429ef47d,
  4800.   0x427b169c, 0x5ac9f049, 0xdd8f0f00, 0x5c8165bf
  4801. };
  4802.  
  4803. static uint32 S2[] = {
  4804.   0x1f201094, 0xef0ba75b, 0x69e3cf7e, 0x393f4380, 0xfe61cf7a, 0xeec5207a,
  4805.   0x55889c94, 0x72fc0651, 0xada7ef79, 0x4e1d7235, 0xd55a63ce, 0xde0436ba,
  4806.   0x99c430ef, 0x5f0c0794, 0x18dcdb7d, 0xa1d6eff3, 0xa0b52f7b, 0x59e83605,
  4807.   0xee15b094, 0xe9ffd909, 0xdc440086, 0xef944459, 0xba83ccb3, 0xe0c3cdfb,
  4808.   0xd1da4181, 0x3b092ab1, 0xf997f1c1, 0xa5e6cf7b, 0x01420ddb, 0xe4e7ef5b,
  4809.   0x25a1ff41, 0xe180f806, 0x1fc41080, 0x179bee7a, 0xd37ac6a9, 0xfe5830a4,
  4810.   0x98de8b7f, 0x77e83f4e, 0x79929269, 0x24fa9f7b, 0xe113c85b, 0xacc40083,
  4811.   0xd7503525, 0xf7ea615f, 0x62143154, 0x0d554b63, 0x5d681121, 0xc866c359,
  4812.   0x3d63cf73, 0xcee234c0, 0xd4d87e87, 0x5c672b21, 0x071f6181, 0x39f7627f,
  4813.   0x361e3084, 0xe4eb573b, 0x602f64a4, 0xd63acd9c, 0x1bbc4635, 0x9e81032d,
  4814.   0x2701f50c, 0x99847ab4, 0xa0e3df79, 0xba6cf38c, 0x10843094, 0x2537a95e,
  4815.   0xf46f6ffe, 0xa1ff3b1f, 0x208cfb6a, 0x8f458c74, 0xd9e0a227, 0x4ec73a34,
  4816.   0xfc884f69, 0x3e4de8df, 0xef0e0088, 0x3559648d, 0x8a45388c, 0x1d804366,
  4817.   0x721d9bfd, 0xa58684bb, 0xe8256333, 0x844e8212, 0x128d8098, 0xfed33fb4,
  4818.   0xce280ae1, 0x27e19ba5, 0xd5a6c252, 0xe49754bd, 0xc5d655dd, 0xeb667064,
  4819.   0x77840b4d, 0xa1b6a801, 0x84db26a9, 0xe0b56714, 0x21f043b7, 0xe5d05860,
  4820.   0x54f03084, 0x066ff472, 0xa31aa153, 0xdadc4755, 0xb5625dbf, 0x68561be6,
  4821.   0x83ca6b94, 0x2d6ed23b, 0xeccf01db, 0xa6d3d0ba, 0xb6803d5c, 0xaf77a709,
  4822.   0x33b4a34c, 0x397bc8d6, 0x5ee22b95, 0x5f0e5304, 0x81ed6f61, 0x20e74364,
  4823.   0xb45e1378, 0xde18639b, 0x881ca122, 0xb96726d1, 0x8049a7e8, 0x22b7da7b,
  4824.   0x5e552d25, 0x5272d237, 0x79d2951c, 0xc60d894c, 0x488cb402, 0x1ba4fe5b,
  4825.   0xa4b09f6b, 0x1ca815cf, 0xa20c3005, 0x8871df63, 0xb9de2fcb, 0x0cc6c9e9,
  4826.   0x0beeff53, 0xe3214517, 0xb4542835, 0x9f63293c, 0xee41e729, 0x6e1d2d7c,
  4827.   0x50045286, 0x1e6685f3, 0xf33401c6, 0x30a22c95, 0x31a70850, 0x60930f13,
  4828.   0x73f98417, 0xa1269859, 0xec645c44, 0x52c877a9, 0xcdff33a6, 0xa02b1741,
  4829.   0x7cbad9a2, 0x2180036f, 0x50d99c08, 0xcb3f4861, 0xc26bd765, 0x64a3f6ab,
  4830.   0x80342676, 0x25a75e7b, 0xe4e6d1fc, 0x20c710e6, 0xcdf0b680, 0x17844d3b,
  4831.   0x31eef84d, 0x7e0824e4, 0x2ccb49eb, 0x846a3bae, 0x8ff77888, 0xee5d60f6,
  4832.   0x7af75673, 0x2fdd5cdb, 0xa11631c1, 0x30f66f43, 0xb3faec54, 0x157fd7fa,
  4833.   0xef8579cc, 0xd152de58, 0xdb2ffd5e, 0x8f32ce19, 0x306af97a, 0x02f03ef8,
  4834.   0x99319ad5, 0xc242fa0f, 0xa7e3ebb0, 0xc68e4906, 0xb8da230c, 0x80823028,
  4835.   0xdcdef3c8, 0xd35fb171, 0x088a1bc8, 0xbec0c560, 0x61a3c9e8, 0xbca8f54d,
  4836.   0xc72feffa, 0x22822e99, 0x82c570b4, 0xd8d94e89, 0x8b1c34bc, 0x301e16e6,
  4837.   0x273be979, 0xb0ffeaa6, 0x61d9b8c6, 0x00b24869, 0xb7ffce3f, 0x08dc283b,
  4838.   0x43daf65a, 0xf7e19798, 0x7619b72f, 0x8f1c9ba4, 0xdc8637a0, 0x16a7d3b1,
  4839.   0x9fc393b7, 0xa7136eeb, 0xc6bcc63e, 0x1a513742, 0xef6828bc, 0x520365d6,
  4840.   0x2d6a77ab, 0x3527ed4b, 0x821fd216, 0x095c6e2e, 0xdb92f2fb, 0x5eea29cb,
  4841.   0x145892f5, 0x91584f7f, 0x5483697b, 0x2667a8cc, 0x85196048, 0x8c4bacea,
  4842.   0x833860d4, 0x0d23e0f9, 0x6c387e8a, 0x0ae6d249, 0xb284600c, 0xd835731d,
  4843.   0xdcb1c647, 0xac4c56ea, 0x3ebd81b3, 0x230eabb0, 0x6438bc87, 0xf0b5b1fa,
  4844.   0x8f5ea2b3, 0xfc184642, 0x0a036b7a, 0x4fb089bd, 0x649da589, 0xa345415e,
  4845.   0x5c038323, 0x3e5d3bb9, 0x43d79572, 0x7e6dd07c, 0x06dfdf1e, 0x6c6cc4ef,
  4846.   0x7160a539, 0x73bfbe70, 0x83877605, 0x4523ecf1
  4847. };
  4848.  
  4849. static uint32 S3[] = {
  4850.   0x8defc240, 0x25fa5d9f, 0xeb903dbf, 0xe810c907, 0x47607fff, 0x369fe44b,
  4851.   0x8c1fc644, 0xaececa90, 0xbeb1f9bf, 0xeefbcaea, 0xe8cf1950, 0x51df07ae,
  4852.   0x920e8806, 0xf0ad0548, 0xe13c8d83, 0x927010d5, 0x11107d9f, 0x07647db9,
  4853.   0xb2e3e4d4, 0x3d4f285e, 0xb9afa820, 0xfade82e0, 0xa067268b, 0x8272792e,
  4854.   0x553fb2c0, 0x489ae22b, 0xd4ef9794, 0x125e3fbc, 0x21fffcee, 0x825b1bfd,
  4855.   0x9255c5ed, 0x1257a240, 0x4e1a8302, 0xbae07fff, 0x528246e7, 0x8e57140e,
  4856.   0x3373f7bf, 0x8c9f8188, 0xa6fc4ee8, 0xc982b5a5, 0xa8c01db7, 0x579fc264,
  4857.   0x67094f31, 0xf2bd3f5f, 0x40fff7c1, 0x1fb78dfc, 0x8e6bd2c1, 0x437be59b,
  4858.   0x99b03dbf, 0xb5dbc64b, 0x638dc0e6, 0x55819d99, 0xa197c81c, 0x4a012d6e,
  4859.   0xc5884a28, 0xccc36f71, 0xb843c213, 0x6c0743f1, 0x8309893c, 0x0feddd5f,
  4860.   0x2f7fe850, 0xd7c07f7e, 0x02507fbf, 0x5afb9a04, 0xa747d2d0, 0x1651192e,
  4861.   0xaf70bf3e, 0x58c31380, 0x5f98302e, 0x727cc3c4, 0x0a0fb402, 0x0f7fef82,
  4862.   0x8c96fdad, 0x5d2c2aae, 0x8ee99a49, 0x50da88b8, 0x8427f4a0, 0x1eac5790,
  4863.   0x796fb449, 0x8252dc15, 0xefbd7d9b, 0xa672597d, 0xada840d8, 0x45f54504,
  4864.   0xfa5d7403, 0xe83ec305, 0x4f91751a, 0x925669c2, 0x23efe941, 0xa903f12e,
  4865.   0x60270df2, 0x0276e4b6, 0x94fd6574, 0x927985b2, 0x8276dbcb, 0x02778176,
  4866.   0xf8af918d, 0x4e48f79e, 0x8f616ddf, 0xe29d840e, 0x842f7d83, 0x340ce5c8,
  4867.   0x96bbb682, 0x93b4b148, 0xef303cab, 0x984faf28, 0x779faf9b, 0x92dc560d,
  4868.   0x224d1e20, 0x8437aa88, 0x7d29dc96, 0x2756d3dc, 0x8b907cee, 0xb51fd240,
  4869.   0xe7c07ce3, 0xe566b4a1, 0xc3e9615e, 0x3cf8209d, 0x6094d1e3, 0xcd9ca341,
  4870.   0x5c76460e, 0x00ea983b, 0xd4d67881, 0xfd47572c, 0xf76cedd9, 0xbda8229c,
  4871.   0x127dadaa, 0x438a074e, 0x1f97c090, 0x081bdb8a, 0x93a07ebe, 0xb938ca15,
  4872.   0x97b03cff, 0x3dc2c0f8, 0x8d1ab2ec, 0x64380e51, 0x68cc7bfb, 0xd90f2788,
  4873.   0x12490181, 0x5de5ffd4, 0xdd7ef86a, 0x76a2e214, 0xb9a40368, 0x925d958f,
  4874.   0x4b39fffa, 0xba39aee9, 0xa4ffd30b, 0xfaf7933b, 0x6d498623, 0x193cbcfa,
  4875.   0x27627545, 0x825cf47a, 0x61bd8ba0, 0xd11e42d1, 0xcead04f4, 0x127ea392,
  4876.   0x10428db7, 0x8272a972, 0x9270c4a8, 0x127de50b, 0x285ba1c8, 0x3c62f44f,
  4877.   0x35c0eaa5, 0xe805d231, 0x428929fb, 0xb4fcdf82, 0x4fb66a53, 0x0e7dc15b,
  4878.   0x1f081fab, 0x108618ae, 0xfcfd086d, 0xf9ff2889, 0x694bcc11, 0x236a5cae,
  4879.   0x12deca4d, 0x2c3f8cc5, 0xd2d02dfe, 0xf8ef5896, 0xe4cf52da, 0x95155b67,
  4880.   0x494a488c, 0xb9b6a80c, 0x5c8f82bc, 0x89d36b45, 0x3a609437, 0xec00c9a9,
  4881.   0x44715253, 0x0a874b49, 0xd773bc40, 0x7c34671c, 0x02717ef6, 0x4feb5536,
  4882.   0xa2d02fff, 0xd2bf60c4, 0xd43f03c0, 0x50b4ef6d, 0x07478cd1, 0x006e1888,
  4883.   0xa2e53f55, 0xb9e6d4bc, 0xa2048016, 0x97573833, 0xd7207d67, 0xde0f8f3d,
  4884.   0x72f87b33, 0xabcc4f33, 0x7688c55d, 0x7b00a6b0, 0x947b0001, 0x570075d2,
  4885.   0xf9bb88f8, 0x8942019e, 0x4264a5ff, 0x856302e0, 0x72dbd92b, 0xee971b69,
  4886.   0x6ea22fde, 0x5f08ae2b, 0xaf7a616d, 0xe5c98767, 0xcf1febd2, 0x61efc8c2,
  4887.   0xf1ac2571, 0xcc8239c2, 0x67214cb8, 0xb1e583d1, 0xb7dc3e62, 0x7f10bdce,
  4888.   0xf90a5c38, 0x0ff0443d, 0x606e6dc6, 0x60543a49, 0x5727c148, 0x2be98a1d,
  4889.   0x8ab41738, 0x20e1be24, 0xaf96da0f, 0x68458425, 0x99833be5, 0x600d457d,
  4890.   0x282f9350, 0x8334b362, 0xd91d1120, 0x2b6d8da0, 0x642b1e31, 0x9c305a00,
  4891.   0x52bce688, 0x1b03588a, 0xf7baefd5, 0x4142ed9c, 0xa4315c11, 0x83323ec5,
  4892.   0xdfef4636, 0xa133c501, 0xe9d3531c, 0xee353783
  4893. };
  4894.  
  4895. static uint32 S4[] = {
  4896.   0x9db30420, 0x1fb6e9de, 0xa7be7bef, 0xd273a298, 0x4a4f7bdb, 0x64ad8c57,
  4897.   0x85510443, 0xfa020ed1, 0x7e287aff, 0xe60fb663, 0x095f35a1, 0x79ebf120,
  4898.   0xfd059d43, 0x6497b7b1, 0xf3641f63, 0x241e4adf, 0x28147f5f, 0x4fa2b8cd,
  4899.   0xc9430040, 0x0cc32220, 0xfdd30b30, 0xc0a5374f, 0x1d2d00d9, 0x24147b15,
  4900.   0xee4d111a, 0x0fca5167, 0x71ff904c, 0x2d195ffe, 0x1a05645f, 0x0c13fefe,
  4901.   0x081b08ca, 0x05170121, 0x80530100, 0xe83e5efe, 0xac9af4f8, 0x7fe72701,
  4902.   0xd2b8ee5f, 0x06df4261, 0xbb9e9b8a, 0x7293ea25, 0xce84ffdf, 0xf5718801,
  4903.   0x3dd64b04, 0xa26f263b, 0x7ed48400, 0x547eebe6, 0x446d4ca0, 0x6cf3d6f5,
  4904.   0x2649abdf, 0xaea0c7f5, 0x36338cc1, 0x503f7e93, 0xd3772061, 0x11b638e1,
  4905.   0x72500e03, 0xf80eb2bb, 0xabe0502e, 0xec8d77de, 0x57971e81, 0xe14f6746,
  4906.   0xc9335400, 0x6920318f, 0x081dbb99, 0xffc304a5, 0x4d351805, 0x7f3d5ce3,
  4907.   0xa6c866c6, 0x5d5bcca9, 0xdaec6fea, 0x9f926f91, 0x9f46222f, 0x3991467d,
  4908.   0xa5bf6d8e, 0x1143c44f, 0x43958302, 0xd0214eeb, 0x022083b8, 0x3fb6180c,
  4909.   0x18f8931e, 0x281658e6, 0x26486e3e, 0x8bd78a70, 0x7477e4c1, 0xb506e07c,
  4910.   0xf32d0a25, 0x79098b02, 0xe4eabb81, 0x28123b23, 0x69dead38, 0x1574ca16,
  4911.   0xdf871b62, 0x211c40b7, 0xa51a9ef9, 0x0014377b, 0x041e8ac8, 0x09114003,
  4912.   0xbd59e4d2, 0xe3d156d5, 0x4fe876d5, 0x2f91a340, 0x557be8de, 0x00eae4a7,
  4913.   0x0ce5c2ec, 0x4db4bba6, 0xe756bdff, 0xdd3369ac, 0xec17b035, 0x06572327,
  4914.   0x99afc8b0, 0x56c8c391, 0x6b65811c, 0x5e146119, 0x6e85cb75, 0xbe07c002,
  4915.   0xc2325577, 0x893ff4ec, 0x5bbfc92d, 0xd0ec3b25, 0xb7801ab7, 0x8d6d3b24,
  4916.   0x20c763ef, 0xc366a5fc, 0x9c382880, 0x0ace3205, 0xaac9548a, 0xeca1d7c7,
  4917.   0x041afa32, 0x1d16625a, 0x6701902c, 0x9b757a54, 0x31d477f7, 0x9126b031,
  4918.   0x36cc6fdb, 0xc70b8b46, 0xd9e66a48, 0x56e55a79, 0x026a4ceb, 0x52437eff,
  4919.   0x2f8f76b4, 0x0df980a5, 0x8674cde3, 0xedda04eb, 0x17a9be04, 0x2c18f4df,
  4920.   0xb7747f9d, 0xab2af7b4, 0xefc34d20, 0x2e096b7c, 0x1741a254, 0xe5b6a035,
  4921.   0x213d42f6, 0x2c1c7c26, 0x61c2f50f, 0x6552daf9, 0xd2c231f8, 0x25130f69,
  4922.   0xd8167fa2, 0x0418f2c8, 0x001a96a6, 0x0d1526ab, 0x63315c21, 0x5e0a72ec,
  4923.   0x49bafefd, 0x187908d9, 0x8d0dbd86, 0x311170a7, 0x3e9b640c, 0xcc3e10d7,
  4924.   0xd5cad3b6, 0x0caec388, 0xf73001e1, 0x6c728aff, 0x71eae2a1, 0x1f9af36e,
  4925.   0xcfcbd12f, 0xc1de8417, 0xac07be6b, 0xcb44a1d8, 0x8b9b0f56, 0x013988c3,
  4926.   0xb1c52fca, 0xb4be31cd, 0xd8782806, 0x12a3a4e2, 0x6f7de532, 0x58fd7eb6,
  4927.   0xd01ee900, 0x24adffc2, 0xf4990fc5, 0x9711aac5, 0x001d7b95, 0x82e5e7d2,
  4928.   0x109873f6, 0x00613096, 0xc32d9521, 0xada121ff, 0x29908415, 0x7fbb977f,
  4929.   0xaf9eb3db, 0x29c9ed2a, 0x5ce2a465, 0xa730f32c, 0xd0aa3fe8, 0x8a5cc091,
  4930.   0xd49e2ce7, 0x0ce454a9, 0xd60acd86, 0x015f1919, 0x77079103, 0xdea03af6,
  4931.   0x78a8565e, 0xdee356df, 0x21f05cbe, 0x8b75e387, 0xb3c50651, 0xb8a5c3ef,
  4932.   0xd8eeb6d2, 0xe523be77, 0xc2154529, 0x2f69efdf, 0xafe67afb, 0xf470c4b2,
  4933.   0xf3e0eb5b, 0xd6cc9876, 0x39e4460c, 0x1fda8538, 0x1987832f, 0xca007367,
  4934.   0xa99144f8, 0x296b299e, 0x492fc295, 0x9266beab, 0xb5676e69, 0x9bd3ddda,
  4935.   0xdf7e052f, 0xdb25701c, 0x1b5e51ee, 0xf65324e6, 0x6afce36c, 0x0316cc04,
  4936.   0x8644213e, 0xb7dc59d0, 0x7965291f, 0xccd6fd43, 0x41823979, 0x932bcdf6,
  4937.   0xb657c34d, 0x4edfd282, 0x7ae5290c, 0x3cb9536b, 0x851e20fe, 0x9833557e,
  4938.   0x13ecf0b0, 0xd3ffb372, 0x3f85c5c1, 0x0aef7ed2
  4939. };
  4940.  
  4941. /* Encrypt/decrypt one 64-bit block of data */
  4942.  
  4943. void
  4944. ck_cast_ecb_encrypt(out, in, sched, mode)
  4945.     uint8p out;
  4946.     uint8p in;
  4947.     CastKeySched * sched;
  4948.     int mode;           /* zero means encrypt */
  4949. {
  4950.     uint32 t[2];
  4951.  
  4952. #ifdef LITTLE_ENDIAN
  4953.     t[0] = (in[0] << 24) | (in[1] << 16) | (in[2] << 8) | in[3];
  4954.     t[1] = (in[4] << 24) | (in[5] << 16) | (in[6] << 8) | in[7];
  4955. #else
  4956.     t[0] = *(uint32p) in;
  4957.     t[1] = *(uint32p) (in + 4);
  4958. #endif
  4959.  
  4960.     ck_cast_ecb_crypt(t, sched, mode);
  4961.  
  4962. #ifdef LITTLE_ENDIAN
  4963.     out[0] = (t[0] >> 24) & 0xff;
  4964.     out[1] = (t[0] >> 16) & 0xff;
  4965.     out[2] = (t[0] >> 8) & 0xff;
  4966.     out[3] = t[0] & 0xff;
  4967.     out[4] = (t[1] >> 24) & 0xff;
  4968.     out[5] = (t[1] >> 16) & 0xff;
  4969.     out[6] = (t[1] >> 8) & 0xff;
  4970.     out[7] = t[1] & 0xff;
  4971. #else
  4972.     *(uint32p) out = t[0];
  4973.     *(uint32p) (out + 4) = t[1];
  4974. #endif
  4975. }
  4976.  
  4977. void
  4978. ck_cast_ecb_crypt(data, sched, mode)
  4979.     uint32p data;
  4980.     CastKeySched * sched;
  4981.     int mode;
  4982. {
  4983.     register uint32 L, R, temp;
  4984.     register struct CastSubkeyPair * kp;
  4985.     register uint8p Ia, Ib, Ic, Id;
  4986.     uint32 I;
  4987.  
  4988. #ifdef LITTLE_ENDIAN
  4989.     Id = (uint8p) &I;
  4990.     Ic = Id + 1;
  4991.     Ib = Ic + 1;
  4992.     Ia = Ib + 1;
  4993. #else
  4994.     Ia = (uint8p) &I;
  4995.     Ib = Ia + 1;
  4996.     Ic = Ib + 1;
  4997.     Id = Ic + 1;
  4998. #endif
  4999.  
  5000.     L = data[0];
  5001.     R = data[1];
  5002.  
  5003. #define type0(left,right)       \
  5004.       temp = kp->Km + right;\
  5005.       I = (temp << kp->Kr) | (temp >> (32 - kp->Kr));\
  5006.       left ^= ((S1[*Ia] ^ S2[*Ib]) - S3[*Ic]) + S4[*Id];
  5007.  
  5008. #define type1(left,right)       \
  5009.       temp = kp->Km ^ right;\
  5010.       I = (temp << kp->Kr) | (temp >> (32 - kp->Kr));\
  5011.       left ^= ((S1[*Ia] - S2[*Ib]) + S3[*Ic]) ^ S4[*Id];
  5012.  
  5013. #define type2(left,right)       \
  5014.       temp = kp->Km - right;\
  5015.       I = (temp << kp->Kr) | (temp >> (32 - kp->Kr));\
  5016.       left ^= ((S1[*Ia] + S2[*Ib]) ^ S3[*Ic]) - S4[*Id];
  5017.  
  5018.     if(mode) {
  5019. #ifndef CAST_EXPORT_ENCRYPTION
  5020.         if(sched->ksize > 10) {
  5021.             kp = &sched->K[15];
  5022.             type0(L, R); --kp;
  5023.             type2(R, L); --kp;
  5024.             type1(L, R); --kp;
  5025.             type0(R, L); --kp;
  5026.         }
  5027.         else
  5028. #endif
  5029.         kp = &sched->K[11];
  5030.         type2(L, R); --kp;
  5031.         type1(R, L); --kp;
  5032.         type0(L, R); --kp;
  5033.         type2(R, L); --kp;
  5034.         type1(L, R); --kp;
  5035.         type0(R, L); --kp;
  5036.         type2(L, R); --kp;
  5037.         type1(R, L); --kp;
  5038.         type0(L, R); --kp;
  5039.         type2(R, L); --kp;
  5040.         type1(L, R); --kp;
  5041.         type0(R, L);
  5042.     }
  5043.     else {
  5044.         kp = &sched->K[0];
  5045.         type0(L, R); ++kp;
  5046.         type1(R, L); ++kp;
  5047.         type2(L, R); ++kp;
  5048.         type0(R, L); ++kp;
  5049.         type1(L, R); ++kp;
  5050.         type2(R, L); ++kp;
  5051.         type0(L, R); ++kp;
  5052.         type1(R, L); ++kp;
  5053.         type2(L, R); ++kp;
  5054.         type0(R, L); ++kp;
  5055.         type1(L, R); ++kp;
  5056.         type2(R, L); ++kp;
  5057. #ifndef CAST_EXPORT_ENCRYPTION
  5058.         if(sched->ksize > 10) {
  5059.             type0(L, R); ++kp;
  5060.             type1(R, L); ++kp;
  5061.             type2(L, R); ++kp;
  5062.             type0(R, L);
  5063.         }
  5064. #endif
  5065.     }
  5066.  
  5067.     data[0] = R;
  5068.     data[1] = L;
  5069. }
  5070.  
  5071. /* The last four S-boxes are for key schedule setup */
  5072.  
  5073. static uint32 S5[] = {
  5074.   0x7ec90c04, 0x2c6e74b9, 0x9b0e66df, 0xa6337911, 0xb86a7fff, 0x1dd358f5,
  5075.   0x44dd9d44, 0x1731167f, 0x08fbf1fa, 0xe7f511cc, 0xd2051b00, 0x735aba00,
  5076.   0x2ab722d8, 0x386381cb, 0xacf6243a, 0x69befd7a, 0xe6a2e77f, 0xf0c720cd,
  5077.   0xc4494816, 0xccf5c180, 0x38851640, 0x15b0a848, 0xe68b18cb, 0x4caadeff,
  5078.   0x5f480a01, 0x0412b2aa, 0x259814fc, 0x41d0efe2, 0x4e40b48d, 0x248eb6fb,
  5079.   0x8dba1cfe, 0x41a99b02, 0x1a550a04, 0xba8f65cb, 0x7251f4e7, 0x95a51725,
  5080.   0xc106ecd7, 0x97a5980a, 0xc539b9aa, 0x4d79fe6a, 0xf2f3f763, 0x68af8040,
  5081.   0xed0c9e56, 0x11b4958b, 0xe1eb5a88, 0x8709e6b0, 0xd7e07156, 0x4e29fea7,
  5082.   0x6366e52d, 0x02d1c000, 0xc4ac8e05, 0x9377f571, 0x0c05372a, 0x578535f2,
  5083.   0x2261be02, 0xd642a0c9, 0xdf13a280, 0x74b55bd2, 0x682199c0, 0xd421e5ec,
  5084.   0x53fb3ce8, 0xc8adedb3, 0x28a87fc9, 0x3d959981, 0x5c1ff900, 0xfe38d399,
  5085.   0x0c4eff0b, 0x062407ea, 0xaa2f4fb1, 0x4fb96976, 0x90c79505, 0xb0a8a774,
  5086.   0xef55a1ff, 0xe59ca2c2, 0xa6b62d27, 0xe66a4263, 0xdf65001f, 0x0ec50966,
  5087.   0xdfdd55bc, 0x29de0655, 0x911e739a, 0x17af8975, 0x32c7911c, 0x89f89468,
  5088.   0x0d01e980, 0x524755f4, 0x03b63cc9, 0x0cc844b2, 0xbcf3f0aa, 0x87ac36e9,
  5089.   0xe53a7426, 0x01b3d82b, 0x1a9e7449, 0x64ee2d7e, 0xcddbb1da, 0x01c94910,
  5090.   0xb868bf80, 0x0d26f3fd, 0x9342ede7, 0x04a5c284, 0x636737b6, 0x50f5b616,
  5091.   0xf24766e3, 0x8eca36c1, 0x136e05db, 0xfef18391, 0xfb887a37, 0xd6e7f7d4,
  5092.   0xc7fb7dc9, 0x3063fcdf, 0xb6f589de, 0xec2941da, 0x26e46695, 0xb7566419,
  5093.   0xf654efc5, 0xd08d58b7, 0x48925401, 0xc1bacb7f, 0xe5ff550f, 0xb6083049,
  5094.   0x5bb5d0e8, 0x87d72e5a, 0xab6a6ee1, 0x223a66ce, 0xc62bf3cd, 0x9e0885f9,
  5095.   0x68cb3e47, 0x086c010f, 0xa21de820, 0xd18b69de, 0xf3f65777, 0xfa02c3f6,
  5096.   0x407edac3, 0xcbb3d550, 0x1793084d, 0xb0d70eba, 0x0ab378d5, 0xd951fb0c,
  5097.   0xded7da56, 0x4124bbe4, 0x94ca0b56, 0x0f5755d1, 0xe0e1e56e, 0x6184b5be,
  5098.   0x580a249f, 0x94f74bc0, 0xe327888e, 0x9f7b5561, 0xc3dc0280, 0x05687715,
  5099.   0x646c6bd7, 0x44904db3, 0x66b4f0a3, 0xc0f1648a, 0x697ed5af, 0x49e92ff6,
  5100.   0x309e374f, 0x2cb6356a, 0x85808573, 0x4991f840, 0x76f0ae02, 0x083be84d,
  5101.   0x28421c9a, 0x44489406, 0x736e4cb8, 0xc1092910, 0x8bc95fc6, 0x7d869cf4,
  5102.   0x134f616f, 0x2e77118d, 0xb31b2be1, 0xaa90b472, 0x3ca5d717, 0x7d161bba,
  5103.   0x9cad9010, 0xaf462ba2, 0x9fe459d2, 0x45d34559, 0xd9f2da13, 0xdbc65487,
  5104.   0xf3e4f94e, 0x176d486f, 0x097c13ea, 0x631da5c7, 0x445f7382, 0x175683f4,
  5105.   0xcdc66a97, 0x70be0288, 0xb3cdcf72, 0x6e5dd2f3, 0x20936079, 0x459b80a5,
  5106.   0xbe60e2db, 0xa9c23101, 0xeba5315c, 0x224e42f2, 0x1c5c1572, 0xf6721b2c,
  5107.   0x1ad2fff3, 0x8c25404e, 0x324ed72f, 0x4067b7fd, 0x0523138e, 0x5ca3bc78,
  5108.   0xdc0fd66e, 0x75922283, 0x784d6b17, 0x58ebb16e, 0x44094f85, 0x3f481d87,
  5109.   0xfcfeae7b, 0x77b5ff76, 0x8c2302bf, 0xaaf47556, 0x5f46b02a, 0x2b092801,
  5110.   0x3d38f5f7, 0x0ca81f36, 0x52af4a8a, 0x66d5e7c0, 0xdf3b0874, 0x95055110,
  5111.   0x1b5ad7a8, 0xf61ed5ad, 0x6cf6e479, 0x20758184, 0xd0cefa65, 0x88f7be58,
  5112.   0x4a046826, 0x0ff6f8f3, 0xa09c7f70, 0x5346aba0, 0x5ce96c28, 0xe176eda3,
  5113.   0x6bac307f, 0x376829d2, 0x85360fa9, 0x17e3fe2a, 0x24b79767, 0xf5a96b20,
  5114.   0xd6cd2595, 0x68ff1ebf, 0x7555442c, 0xf19f06be, 0xf9e0659a, 0xeeb9491d,
  5115.   0x34010718, 0xbb30cab8, 0xe822fe15, 0x88570983, 0x750e6249, 0xda627e55,
  5116.   0x5e76ffa8, 0xb1534546, 0x6d47de08, 0xefe9e7d4
  5117. };
  5118.  
  5119. static uint32 S6[] = {
  5120.   0xf6fa8f9d, 0x2cac6ce1, 0x4ca34867, 0xe2337f7c, 0x95db08e7, 0x016843b4,
  5121.   0xeced5cbc, 0x325553ac, 0xbf9f0960, 0xdfa1e2ed, 0x83f0579d, 0x63ed86b9,
  5122.   0x1ab6a6b8, 0xde5ebe39, 0xf38ff732, 0x8989b138, 0x33f14961, 0xc01937bd,
  5123.   0xf506c6da, 0xe4625e7e, 0xa308ea99, 0x4e23e33c, 0x79cbd7cc, 0x48a14367,
  5124.   0xa3149619, 0xfec94bd5, 0xa114174a, 0xeaa01866, 0xa084db2d, 0x09a8486f,
  5125.   0xa888614a, 0x2900af98, 0x01665991, 0xe1992863, 0xc8f30c60, 0x2e78ef3c,
  5126.   0xd0d51932, 0xcf0fec14, 0xf7ca07d2, 0xd0a82072, 0xfd41197e, 0x9305a6b0,
  5127.   0xe86be3da, 0x74bed3cd, 0x372da53c, 0x4c7f4448, 0xdab5d440, 0x6dba0ec3,
  5128.   0x083919a7, 0x9fbaeed9, 0x49dbcfb0, 0x4e670c53, 0x5c3d9c01, 0x64bdb941,
  5129.   0x2c0e636a, 0xba7dd9cd, 0xea6f7388, 0xe70bc762, 0x35f29adb, 0x5c4cdd8d,
  5130.   0xf0d48d8c, 0xb88153e2, 0x08a19866, 0x1ae2eac8, 0x284caf89, 0xaa928223,
  5131.   0x9334be53, 0x3b3a21bf, 0x16434be3, 0x9aea3906, 0xefe8c36e, 0xf890cdd9,
  5132.   0x80226dae, 0xc340a4a3, 0xdf7e9c09, 0xa694a807, 0x5b7c5ecc, 0x221db3a6,
  5133.   0x9a69a02f, 0x68818a54, 0xceb2296f, 0x53c0843a, 0xfe893655, 0x25bfe68a,
  5134.   0xb4628abc, 0xcf222ebf, 0x25ac6f48, 0xa9a99387, 0x53bddb65, 0xe76ffbe7,
  5135.   0xe967fd78, 0x0ba93563, 0x8e342bc1, 0xe8a11be9, 0x4980740d, 0xc8087dfc,
  5136.   0x8de4bf99, 0xa11101a0, 0x7fd37975, 0xda5a26c0, 0xe81f994f, 0x9528cd89,
  5137.   0xfd339fed, 0xb87834bf, 0x5f04456d, 0x22258698, 0xc9c4c83b, 0x2dc156be,
  5138.   0x4f628daa, 0x57f55ec5, 0xe2220abe, 0xd2916ebf, 0x4ec75b95, 0x24f2c3c0,
  5139.   0x42d15d99, 0xcd0d7fa0, 0x7b6e27ff, 0xa8dc8af0, 0x7345c106, 0xf41e232f,
  5140.   0x35162386, 0xe6ea8926, 0x3333b094, 0x157ec6f2, 0x372b74af, 0x692573e4,
  5141.   0xe9a9d848, 0xf3160289, 0x3a62ef1d, 0xa787e238, 0xf3a5f676, 0x74364853,
  5142.   0x20951063, 0x4576698d, 0xb6fad407, 0x592af950, 0x36f73523, 0x4cfb6e87,
  5143.   0x7da4cec0, 0x6c152daa, 0xcb0396a8, 0xc50dfe5d, 0xfcd707ab, 0x0921c42f,
  5144.   0x89dff0bb, 0x5fe2be78, 0x448f4f33, 0x754613c9, 0x2b05d08d, 0x48b9d585,
  5145.   0xdc049441, 0xc8098f9b, 0x7dede786, 0xc39a3373, 0x42410005, 0x6a091751,
  5146.   0x0ef3c8a6, 0x890072d6, 0x28207682, 0xa9a9f7be, 0xbf32679d, 0xd45b5b75,
  5147.   0xb353fd00, 0xcbb0e358, 0x830f220a, 0x1f8fb214, 0xd372cf08, 0xcc3c4a13,
  5148.   0x8cf63166, 0x061c87be, 0x88c98f88, 0x6062e397, 0x47cf8e7a, 0xb6c85283,
  5149.   0x3cc2acfb, 0x3fc06976, 0x4e8f0252, 0x64d8314d, 0xda3870e3, 0x1e665459,
  5150.   0xc10908f0, 0x513021a5, 0x6c5b68b7, 0x822f8aa0, 0x3007cd3e, 0x74719eef,
  5151.   0xdc872681, 0x073340d4, 0x7e432fd9, 0x0c5ec241, 0x8809286c, 0xf592d891,
  5152.   0x08a930f6, 0x957ef305, 0xb7fbffbd, 0xc266e96f, 0x6fe4ac98, 0xb173ecc0,
  5153.   0xbc60b42a, 0x953498da, 0xfba1ae12, 0x2d4bd736, 0x0f25faab, 0xa4f3fceb,
  5154.   0xe2969123, 0x257f0c3d, 0x9348af49, 0x361400bc, 0xe8816f4a, 0x3814f200,
  5155.   0xa3f94043, 0x9c7a54c2, 0xbc704f57, 0xda41e7f9, 0xc25ad33a, 0x54f4a084,
  5156.   0xb17f5505, 0x59357cbe, 0xedbd15c8, 0x7f97c5ab, 0xba5ac7b5, 0xb6f6deaf,
  5157.   0x3a479c3a, 0x5302da25, 0x653d7e6a, 0x54268d49, 0x51a477ea, 0x5017d55b,
  5158.   0xd7d25d88, 0x44136c76, 0x0404a8c8, 0xb8e5a121, 0xb81a928a, 0x60ed5869,
  5159.   0x97c55b96, 0xeaec991b, 0x29935913, 0x01fdb7f1, 0x088e8dfa, 0x9ab6f6f5,
  5160.   0x3b4cbf9f, 0x4a5de3ab, 0xe6051d35, 0xa0e1d855, 0xd36b4cf1, 0xf544edeb,
  5161.   0xb0e93524, 0xbebb8fbd, 0xa2d762cf, 0x49c92f54, 0x38b5f331, 0x7128a454,
  5162.   0x48392905, 0xa65b1db8, 0x851c97bd, 0xd675cf2f
  5163. };
  5164.  
  5165. static uint32 S7[] = {
  5166.   0x85e04019, 0x332bf567, 0x662dbfff, 0xcfc65693, 0x2a8d7f6f, 0xab9bc912,
  5167.   0xde6008a1, 0x2028da1f, 0x0227bce7, 0x4d642916, 0x18fac300, 0x50f18b82,
  5168.   0x2cb2cb11, 0xb232e75c, 0x4b3695f2, 0xb28707de, 0xa05fbcf6, 0xcd4181e9,
  5169.   0xe150210c, 0xe24ef1bd, 0xb168c381, 0xfde4e789, 0x5c79b0d8, 0x1e8bfd43,
  5170.   0x4d495001, 0x38be4341, 0x913cee1d, 0x92a79c3f, 0x089766be, 0xbaeeadf4,
  5171.   0x1286becf, 0xb6eacb19, 0x2660c200, 0x7565bde4, 0x64241f7a, 0x8248dca9,
  5172.   0xc3b3ad66, 0x28136086, 0x0bd8dfa8, 0x356d1cf2, 0x107789be, 0xb3b2e9ce,
  5173.   0x0502aa8f, 0x0bc0351e, 0x166bf52a, 0xeb12ff82, 0xe3486911, 0xd34d7516,
  5174.   0x4e7b3aff, 0x5f43671b, 0x9cf6e037, 0x4981ac83, 0x334266ce, 0x8c9341b7,
  5175.   0xd0d854c0, 0xcb3a6c88, 0x47bc2829, 0x4725ba37, 0xa66ad22b, 0x7ad61f1e,
  5176.   0x0c5cbafa, 0x4437f107, 0xb6e79962, 0x42d2d816, 0x0a961288, 0xe1a5c06e,
  5177.   0x13749e67, 0x72fc081a, 0xb1d139f7, 0xf9583745, 0xcf19df58, 0xbec3f756,
  5178.   0xc06eba30, 0x07211b24, 0x45c28829, 0xc95e317f, 0xbc8ec511, 0x38bc46e9,
  5179.   0xc6e6fa14, 0xbae8584a, 0xad4ebc46, 0x468f508b, 0x7829435f, 0xf124183b,
  5180.   0x821dba9f, 0xaff60ff4, 0xea2c4e6d, 0x16e39264, 0x92544a8b, 0x009b4fc3,
  5181.   0xaba68ced, 0x9ac96f78, 0x06a5b79a, 0xb2856e6e, 0x1aec3ca9, 0xbe838688,
  5182.   0x0e0804e9, 0x55f1be56, 0xe7e5363b, 0xb3a1f25d, 0xf7debb85, 0x61fe033c,
  5183.   0x16746233, 0x3c034c28, 0xda6d0c74, 0x79aac56c, 0x3ce4e1ad, 0x51f0c802,
  5184.   0x98f8f35a, 0x1626a49f, 0xeed82b29, 0x1d382fe3, 0x0c4fb99a, 0xbb325778,
  5185.   0x3ec6d97b, 0x6e77a6a9, 0xcb658b5c, 0xd45230c7, 0x2bd1408b, 0x60c03eb7,
  5186.   0xb9068d78, 0xa33754f4, 0xf430c87d, 0xc8a71302, 0xb96d8c32, 0xebd4e7be,
  5187.   0xbe8b9d2d, 0x7979fb06, 0xe7225308, 0x8b75cf77, 0x11ef8da4, 0xe083c858,
  5188.   0x8d6b786f, 0x5a6317a6, 0xfa5cf7a0, 0x5dda0033, 0xf28ebfb0, 0xf5b9c310,
  5189.   0xa0eac280, 0x08b9767a, 0xa3d9d2b0, 0x79d34217, 0x021a718d, 0x9ac6336a,
  5190.   0x2711fd60, 0x438050e3, 0x069908a8, 0x3d7fedc4, 0x826d2bef, 0x4eeb8476,
  5191.   0x488dcf25, 0x36c9d566, 0x28e74e41, 0xc2610aca, 0x3d49a9cf, 0xbae3b9df,
  5192.   0xb65f8de6, 0x92aeaf64, 0x3ac7d5e6, 0x9ea80509, 0xf22b017d, 0xa4173f70,
  5193.   0xdd1e16c3, 0x15e0d7f9, 0x50b1b887, 0x2b9f4fd5, 0x625aba82, 0x6a017962,
  5194.   0x2ec01b9c, 0x15488aa9, 0xd716e740, 0x40055a2c, 0x93d29a22, 0xe32dbf9a,
  5195.   0x058745b9, 0x3453dc1e, 0xd699296e, 0x496cff6f, 0x1c9f4986, 0xdfe2ed07,
  5196.   0xb87242d1, 0x19de7eae, 0x053e561a, 0x15ad6f8c, 0x66626c1c, 0x7154c24c,
  5197.   0xea082b2a, 0x93eb2939, 0x17dcb0f0, 0x58d4f2ae, 0x9ea294fb, 0x52cf564c,
  5198.   0x9883fe66, 0x2ec40581, 0x763953c3, 0x01d6692e, 0xd3a0c108, 0xa1e7160e,
  5199.   0xe4f2dfa6, 0x693ed285, 0x74904698, 0x4c2b0edd, 0x4f757656, 0x5d393378,
  5200.   0xa132234f, 0x3d321c5d, 0xc3f5e194, 0x4b269301, 0xc79f022f, 0x3c997e7e,
  5201.   0x5e4f9504, 0x3ffafbbd, 0x76f7ad0e, 0x296693f4, 0x3d1fce6f, 0xc61e45be,
  5202.   0xd3b5ab34, 0xf72bf9b7, 0x1b0434c0, 0x4e72b567, 0x5592a33d, 0xb5229301,
  5203.   0xcfd2a87f, 0x60aeb767, 0x1814386b, 0x30bcc33d, 0x38a0c07d, 0xfd1606f2,
  5204.   0xc363519b, 0x589dd390, 0x5479f8e6, 0x1cb8d647, 0x97fd61a9, 0xea7759f4,
  5205.   0x2d57539d, 0x569a58cf, 0xe84e63ad, 0x462e1b78, 0x6580f87e, 0xf3817914,
  5206.   0x91da55f4, 0x40a230f3, 0xd1988f35, 0xb6e318d2, 0x3ffa50bc, 0x3d40f021,
  5207.   0xc3c0bdae, 0x4958c24c, 0x518f36b2, 0x84b1d370, 0x0fedce83, 0x878ddada,
  5208.   0xf2a279c7, 0x94e01be8, 0x90716f4b, 0x954b8aa3
  5209. };
  5210.  
  5211. static uint32 S8[] = {
  5212.   0xe216300d, 0xbbddfffc, 0xa7ebdabd, 0x35648095, 0x7789f8b7, 0xe6c1121b,
  5213.   0x0e241600, 0x052ce8b5, 0x11a9cfb0, 0xe5952f11, 0xece7990a, 0x9386d174,
  5214.   0x2a42931c, 0x76e38111, 0xb12def3a, 0x37ddddfc, 0xde9adeb1, 0x0a0cc32c,
  5215.   0xbe197029, 0x84a00940, 0xbb243a0f, 0xb4d137cf, 0xb44e79f0, 0x049eedfd,
  5216.   0x0b15a15d, 0x480d3168, 0x8bbbde5a, 0x669ded42, 0xc7ece831, 0x3f8f95e7,
  5217.   0x72df191b, 0x7580330d, 0x94074251, 0x5c7dcdfa, 0xabbe6d63, 0xaa402164,
  5218.   0xb301d40a, 0x02e7d1ca, 0x53571dae, 0x7a3182a2, 0x12a8ddec, 0xfdaa335d,
  5219.   0x176f43e8, 0x71fb46d4, 0x38129022, 0xce949ad4, 0xb84769ad, 0x965bd862,
  5220.   0x82f3d055, 0x66fb9767, 0x15b80b4e, 0x1d5b47a0, 0x4cfde06f, 0xc28ec4b8,
  5221.   0x57e8726e, 0x647a78fc, 0x99865d44, 0x608bd593, 0x6c200e03, 0x39dc5ff6,
  5222.   0x5d0b00a3, 0xae63aff2, 0x7e8bd632, 0x70108c0c, 0xbbd35049, 0x2998df04,
  5223.   0x980cf42a, 0x9b6df491, 0x9e7edd53, 0x06918548, 0x58cb7e07, 0x3b74ef2e,
  5224.   0x522fffb1, 0xd24708cc, 0x1c7e27cd, 0xa4eb215b, 0x3cf1d2e2, 0x19b47a38,
  5225.   0x424f7618, 0x35856039, 0x9d17dee7, 0x27eb35e6, 0xc9aff67b, 0x36baf5b8,
  5226.   0x09c467cd, 0xc18910b1, 0xe11dbf7b, 0x06cd1af8, 0x7170c608, 0x2d5e3354,
  5227.   0xd4de495a, 0x64c6d006, 0xbcc0c62c, 0x3dd00db3, 0x708f8f34, 0x77d51b42,
  5228.   0x264f620f, 0x24b8d2bf, 0x15c1b79e, 0x46a52564, 0xf8d7e54e, 0x3e378160,
  5229.   0x7895cda5, 0x859c15a5, 0xe6459788, 0xc37bc75f, 0xdb07ba0c, 0x0676a3ab,
  5230.   0x7f229b1e, 0x31842e7b, 0x24259fd7, 0xf8bef472, 0x835ffcb8, 0x6df4c1f2,
  5231.   0x96f5b195, 0xfd0af0fc, 0xb0fe134c, 0xe2506d3d, 0x4f9b12ea, 0xf215f225,
  5232.   0xa223736f, 0x9fb4c428, 0x25d04979, 0x34c713f8, 0xc4618187, 0xea7a6e98,
  5233.   0x7cd16efc, 0x1436876c, 0xf1544107, 0xbedeee14, 0x56e9af27, 0xa04aa441,
  5234.   0x3cf7c899, 0x92ecbae6, 0xdd67016d, 0x151682eb, 0xa842eedf, 0xfdba60b4,
  5235.   0xf1907b75, 0x20e3030f, 0x24d8c29e, 0xe139673b, 0xefa63fb8, 0x71873054,
  5236.   0xb6f2cf3b, 0x9f326442, 0xcb15a4cc, 0xb01a4504, 0xf1e47d8d, 0x844a1be5,
  5237.   0xbae7dfdc, 0x42cbda70, 0xcd7dae0a, 0x57e85b7a, 0xd53f5af6, 0x20cf4d8c,
  5238.   0xcea4d428, 0x79d130a4, 0x3486ebfb, 0x33d3cddc, 0x77853b53, 0x37effcb5,
  5239.   0xc5068778, 0xe580b3e6, 0x4e68b8f4, 0xc5c8b37e, 0x0d809ea2, 0x398feb7c,
  5240.   0x132a4f94, 0x43b7950e, 0x2fee7d1c, 0x223613bd, 0xdd06caa2, 0x37df932b,
  5241.   0xc4248289, 0xacf3ebc3, 0x5715f6b7, 0xef3478dd, 0xf267616f, 0xc148cbe4,
  5242.   0x9052815e, 0x5e410fab, 0xb48a2465, 0x2eda7fa4, 0xe87b40e4, 0xe98ea084,
  5243.   0x5889e9e1, 0xefd390fc, 0xdd07d35b, 0xdb485694, 0x38d7e5b2, 0x57720101,
  5244.   0x730edebc, 0x5b643113, 0x94917e4f, 0x503c2fba, 0x646f1282, 0x7523d24a,
  5245.   0xe0779695, 0xf9c17a8f, 0x7a5b2121, 0xd187b896, 0x29263a4d, 0xba510cdf,
  5246.   0x81f47c9f, 0xad1163ed, 0xea7b5965, 0x1a00726e, 0x11403092, 0x00da6d77,
  5247.   0x4a0cdd61, 0xad1f4603, 0x605bdfb0, 0x9eedc364, 0x22ebe6a8, 0xcee7d28a,
  5248.   0xa0e736a0, 0x5564a6b9, 0x10853209, 0xc7eb8f37, 0x2de705ca, 0x8951570f,
  5249.   0xdf09822b, 0xbd691a6c, 0xaa12e4f2, 0x87451c0f, 0xe0f6a27a, 0x3ada4819,
  5250.   0x4cf1764f, 0x0d771c2b, 0x67cdb156, 0x350d8384, 0x5938fa0f, 0x42399ef3,
  5251.   0x36997b07, 0x0e84093d, 0x4aa93e61, 0x8360d87b, 0x1fa98b0c, 0x1149382c,
  5252.   0xe97625a5, 0x0614d1b7, 0x0e25244b, 0x0c768347, 0x589e8d82, 0x0d2059d1,
  5253.   0xa466bb1e, 0xf8da0a82, 0x04f19130, 0xba6e4ec0, 0x99265164, 0x1ee7230d,
  5254.   0x50b2ad80, 0xeaee6801, 0x8db2a283, 0xea8bf59e
  5255. };
  5256.  
  5257. /* Initialize a key schedule from a 128-bit key */
  5258.  
  5259. static void
  5260. cast_key_sched(sched, key)
  5261.      CastKeySched * sched;
  5262.      uint8p key;
  5263. {
  5264.     uint8p x0, x1, x2, x3, x4, x5, x6, x7, x8, x9, xA, xB, xC, xD, xE, xF;
  5265.     uint8p z0, z1, z2, z3, z4, z5, z6, z7, z8, z9, zA, zB, zC, zD, zE, zF;
  5266.     uint32 X03, X47, X8B, XCF, Z03, Z47, Z8B, ZCF;
  5267.  
  5268. #ifdef LITTLE_ENDIAN
  5269.     x3 = (uint8p) &X03;  x2 = x3 + 1;  x1 = x2 + 1;  x0 = x1 + 1;
  5270.     x7 = (uint8p) &X47;  x6 = x7 + 1;  x5 = x6 + 1;  x4 = x5 + 1;
  5271.     xB = (uint8p) &X8B;  xA = xB + 1;  x9 = xA + 1;  x8 = x9 + 1;
  5272.     xF = (uint8p) &XCF;  xE = xF + 1;  xD = xE + 1;  xC = xD + 1;
  5273.     z3 = (uint8p) &Z03;  z2 = z3 + 1;  z1 = z2 + 1;  z0 = z1 + 1;
  5274.     z7 = (uint8p) &Z47;  z6 = z7 + 1;  z5 = z6 + 1;  z4 = z5 + 1;
  5275.     zB = (uint8p) &Z8B;  zA = zB + 1;  z9 = zA + 1;  z8 = z9 + 1;
  5276.     zF = (uint8p) &ZCF;  zE = zF + 1;  zD = zE + 1;  zC = zD + 1;
  5277. #else
  5278.     x0 = (uint8p) &X03;  x1 = x0 + 1;  x2 = x1 + 1;  x3 = x2 + 1;
  5279.     x4 = (uint8p) &X47;  x5 = x4 + 1;  x6 = x5 + 1;  x7 = x6 + 1;
  5280.     x8 = (uint8p) &X8B;  x9 = x8 + 1;  xA = x9 + 1;  xB = xA + 1;
  5281.     xC = (uint8p) &XCF;  xD = xC + 1;  xE = xD + 1;  xF = xE + 1;
  5282.     z0 = (uint8p) &Z03;  z1 = z0 + 1;  z2 = z1 + 1;  z3 = z2 + 1;
  5283.     z4 = (uint8p) &Z47;  z5 = z4 + 1;  z6 = z5 + 1;  z7 = z6 + 1;
  5284.     z8 = (uint8p) &Z8B;  z9 = z8 + 1;  zA = z9 + 1;  zB = zA + 1;
  5285.     zC = (uint8p) &ZCF;  zD = zC + 1;  zE = zD + 1;  zF = zE + 1;
  5286. #endif
  5287.  
  5288. #ifdef LITTLE_ENDIAN
  5289.     *x0 = key[0];
  5290.     *x1 = key[1];
  5291.     *x2 = key[2];
  5292.     *x3 = key[3];
  5293.     *x4 = key[4];
  5294.     *x5 = key[5];
  5295.     *x6 = key[6];
  5296.     *x7 = key[7];
  5297.     *x8 = key[8];
  5298.     *x9 = key[9];
  5299.     *xA = key[10];
  5300.     *xB = key[11];
  5301.     *xC = key[12];
  5302.     *xD = key[13];
  5303.     *xE = key[14];
  5304.     *xF = key[15];
  5305. #else
  5306.     X03 = *(uint32p) key;
  5307.     X47 = *(uint32p) (key + 4);
  5308.     X8B = *(uint32p) (key + 8);
  5309.     XCF = *(uint32p) (key + 12);
  5310. #endif
  5311.  
  5312.   /* First half of key schedule */
  5313.  
  5314.     Z03 = X03 ^ S5[*xD] ^ S6[*xF] ^ S7[*xC] ^ S8[*xE] ^ S7[*x8];
  5315.     Z47 = X8B ^ S5[*z0] ^ S6[*z2] ^ S7[*z1] ^ S8[*z3] ^ S8[*xA];
  5316.     Z8B = XCF ^ S5[*z7] ^ S6[*z6] ^ S7[*z5] ^ S8[*z4] ^ S5[*x9];
  5317.     ZCF = X47 ^ S5[*zA] ^ S6[*z9] ^ S7[*zB] ^ S8[*z8] ^ S6[*xB];
  5318.  
  5319.     sched->K[0].Km = S5[*z8] ^ S6[*z9] ^ S7[*z7] ^ S8[*z6] ^ S5[*z2];
  5320.     sched->K[1].Km = S5[*zA] ^ S6[*zB] ^ S7[*z5] ^ S8[*z4] ^ S6[*z6];
  5321.     sched->K[2].Km = S5[*zC] ^ S6[*zD] ^ S7[*z3] ^ S8[*z2] ^ S7[*z9];
  5322.     sched->K[3].Km = S5[*zE] ^ S6[*zF] ^ S7[*z1] ^ S8[*z0] ^ S8[*zC];
  5323.  
  5324.     X03 = Z8B ^ S5[*z5] ^ S6[*z7] ^ S7[*z4] ^ S8[*z6] ^ S7[*z0];
  5325.     X47 = Z03 ^ S5[*x0] ^ S6[*x2] ^ S7[*x1] ^ S8[*x3] ^ S8[*z2];
  5326.     X8B = Z47 ^ S5[*x7] ^ S6[*x6] ^ S7[*x5] ^ S8[*x4] ^ S5[*z1];
  5327.     XCF = ZCF ^ S5[*xA] ^ S6[*x9] ^ S7[*xB] ^ S8[*x8] ^ S6[*z3];
  5328.  
  5329.     sched->K[4].Km = S5[*x3] ^ S6[*x2] ^ S7[*xC] ^ S8[*xD] ^ S5[*x8];
  5330.     sched->K[5].Km = S5[*x1] ^ S6[*x0] ^ S7[*xE] ^ S8[*xF] ^ S6[*xD];
  5331.     sched->K[6].Km = S5[*x7] ^ S6[*x6] ^ S7[*x8] ^ S8[*x9] ^ S7[*x3];
  5332.     sched->K[7].Km = S5[*x5] ^ S6[*x4] ^ S7[*xA] ^ S8[*xB] ^ S8[*x7];
  5333.  
  5334.     Z03 = X03 ^ S5[*xD] ^ S6[*xF] ^ S7[*xC] ^ S8[*xE] ^ S7[*x8];
  5335.     Z47 = X8B ^ S5[*z0] ^ S6[*z2] ^ S7[*z1] ^ S8[*z3] ^ S8[*xA];
  5336.     Z8B = XCF ^ S5[*z7] ^ S6[*z6] ^ S7[*z5] ^ S8[*z4] ^ S5[*x9];
  5337.     ZCF = X47 ^ S5[*zA] ^ S6[*z9] ^ S7[*zB] ^ S8[*z8] ^ S6[*xB];
  5338.  
  5339.     sched->K[8].Km = S5[*z3] ^ S6[*z2] ^ S7[*zC] ^ S8[*zD] ^ S5[*z9];
  5340.     sched->K[9].Km = S5[*z1] ^ S6[*z0] ^ S7[*zE] ^ S8[*zF] ^ S6[*zC];
  5341.     sched->K[10].Km = S5[*z7] ^ S6[*z6] ^ S7[*z8] ^ S8[*z9] ^ S7[*z2];
  5342.     sched->K[11].Km = S5[*z5] ^ S6[*z4] ^ S7[*zA] ^ S8[*zB] ^ S8[*z6];
  5343.  
  5344.     X03 = Z8B ^ S5[*z5] ^ S6[*z7] ^ S7[*z4] ^ S8[*z6] ^ S7[*z0];
  5345.     X47 = Z03 ^ S5[*x0] ^ S6[*x2] ^ S7[*x1] ^ S8[*x3] ^ S8[*z2];
  5346.     X8B = Z47 ^ S5[*x7] ^ S6[*x6] ^ S7[*x5] ^ S8[*x4] ^ S5[*z1];
  5347.     XCF = ZCF ^ S5[*xA] ^ S6[*x9] ^ S7[*xB] ^ S8[*x8] ^ S6[*z3];
  5348.  
  5349.     sched->K[12].Km = S5[*x8] ^ S6[*x9] ^ S7[*x7] ^ S8[*x6] ^ S5[*x3];
  5350.     sched->K[13].Km = S5[*xA] ^ S6[*xB] ^ S7[*x5] ^ S8[*x4] ^ S6[*x7];
  5351.     sched->K[14].Km = S5[*xC] ^ S6[*xD] ^ S7[*x3] ^ S8[*x2] ^ S7[*x8];
  5352.     sched->K[15].Km = S5[*xE] ^ S6[*xF] ^ S7[*x1] ^ S8[*x0] ^ S8[*xD];
  5353.  
  5354.   /* Second half of key schedule - just like first half */
  5355.  
  5356.     Z03 = X03 ^ S5[*xD] ^ S6[*xF] ^ S7[*xC] ^ S8[*xE] ^ S7[*x8];
  5357.     Z47 = X8B ^ S5[*z0] ^ S6[*z2] ^ S7[*z1] ^ S8[*z3] ^ S8[*xA];
  5358.     Z8B = XCF ^ S5[*z7] ^ S6[*z6] ^ S7[*z5] ^ S8[*z4] ^ S5[*x9];
  5359.     ZCF = X47 ^ S5[*zA] ^ S6[*z9] ^ S7[*zB] ^ S8[*z8] ^ S6[*xB];
  5360.  
  5361.     sched->K[0].Kr = (S5[*z8] ^ S6[*z9] ^ S7[*z7] ^ S8[*z6] ^ S5[*z2]) & 0x1f;
  5362.     sched->K[1].Kr = (S5[*zA] ^ S6[*zB] ^ S7[*z5] ^ S8[*z4] ^ S6[*z6]) & 0x1f;
  5363.     sched->K[2].Kr = (S5[*zC] ^ S6[*zD] ^ S7[*z3] ^ S8[*z2] ^ S7[*z9]) & 0x1f;
  5364.     sched->K[3].Kr = (S5[*zE] ^ S6[*zF] ^ S7[*z1] ^ S8[*z0] ^ S8[*zC]) & 0x1f;
  5365.  
  5366.     X03 = Z8B ^ S5[*z5] ^ S6[*z7] ^ S7[*z4] ^ S8[*z6] ^ S7[*z0];
  5367.     X47 = Z03 ^ S5[*x0] ^ S6[*x2] ^ S7[*x1] ^ S8[*x3] ^ S8[*z2];
  5368.     X8B = Z47 ^ S5[*x7] ^ S6[*x6] ^ S7[*x5] ^ S8[*x4] ^ S5[*z1];
  5369.     XCF = ZCF ^ S5[*xA] ^ S6[*x9] ^ S7[*xB] ^ S8[*x8] ^ S6[*z3];
  5370.  
  5371.     sched->K[4].Kr = (S5[*x3] ^ S6[*x2] ^ S7[*xC] ^ S8[*xD] ^ S5[*x8]) & 0x1f;
  5372.     sched->K[5].Kr = (S5[*x1] ^ S6[*x0] ^ S7[*xE] ^ S8[*xF] ^ S6[*xD]) & 0x1f;
  5373.     sched->K[6].Kr = (S5[*x7] ^ S6[*x6] ^ S7[*x8] ^ S8[*x9] ^ S7[*x3]) & 0x1f;
  5374.     sched->K[7].Kr = (S5[*x5] ^ S6[*x4] ^ S7[*xA] ^ S8[*xB] ^ S8[*x7]) & 0x1f;
  5375.  
  5376.     Z03 = X03 ^ S5[*xD] ^ S6[*xF] ^ S7[*xC] ^ S8[*xE] ^ S7[*x8];
  5377.     Z47 = X8B ^ S5[*z0] ^ S6[*z2] ^ S7[*z1] ^ S8[*z3] ^ S8[*xA];
  5378.     Z8B = XCF ^ S5[*z7] ^ S6[*z6] ^ S7[*z5] ^ S8[*z4] ^ S5[*x9];
  5379.     ZCF = X47 ^ S5[*zA] ^ S6[*z9] ^ S7[*zB] ^ S8[*z8] ^ S6[*xB];
  5380.  
  5381.     sched->K[8].Kr = (S5[*z3] ^ S6[*z2] ^ S7[*zC] ^ S8[*zD] ^ S5[*z9]) & 0x1f;
  5382.     sched->K[9].Kr = (S5[*z1] ^ S6[*z0] ^ S7[*zE] ^ S8[*zF] ^ S6[*zC]) & 0x1f;
  5383.     sched->K[10].Kr = (S5[*z7] ^ S6[*z6] ^ S7[*z8] ^ S8[*z9] ^ S7[*z2]) & 0x1f;
  5384.     sched->K[11].Kr = (S5[*z5] ^ S6[*z4] ^ S7[*zA] ^ S8[*zB] ^ S8[*z6]) & 0x1f;
  5385.  
  5386.     X03 = Z8B ^ S5[*z5] ^ S6[*z7] ^ S7[*z4] ^ S8[*z6] ^ S7[*z0];
  5387.     X47 = Z03 ^ S5[*x0] ^ S6[*x2] ^ S7[*x1] ^ S8[*x3] ^ S8[*z2];
  5388.     X8B = Z47 ^ S5[*x7] ^ S6[*x6] ^ S7[*x5] ^ S8[*x4] ^ S5[*z1];
  5389.     XCF = ZCF ^ S5[*xA] ^ S6[*x9] ^ S7[*xB] ^ S8[*x8] ^ S6[*z3];
  5390.  
  5391.     sched->K[12].Kr = (S5[*x8] ^ S6[*x9] ^ S7[*x7] ^ S8[*x6] ^ S5[*x3]) & 0x1f;
  5392.     sched->K[13].Kr = (S5[*xA] ^ S6[*xB] ^ S7[*x5] ^ S8[*x4] ^ S6[*x7]) & 0x1f;
  5393.     sched->K[14].Kr = (S5[*xC] ^ S6[*xD] ^ S7[*x3] ^ S8[*x2] ^ S7[*x8]) & 0x1f;
  5394.     sched->K[15].Kr = (S5[*xE] ^ S6[*xF] ^ S7[*x1] ^ S8[*x0] ^ S8[*xD]) & 0x1f;
  5395. }
  5396.  
  5397. /* Initialize with a full-strength 128-bit key */
  5398.  
  5399. #ifndef CAST_EXPORT_ENCRYPTION
  5400. void
  5401. ck_cast128_key_sched(sched, key)
  5402.     CastKeySched * sched;
  5403.     uint8 * key;
  5404. {
  5405.     sched->ksize = 16;
  5406.     cast_key_sched(sched, key);
  5407. }
  5408. #endif
  5409.  
  5410. /* Handle reduced-keysize variants */
  5411.  
  5412. static void
  5413. cast5_key_sched(sched, key, sz)
  5414.     CastKeySched * sched;
  5415.     uint8 * key;
  5416.     int sz;
  5417. {
  5418.     uint8 buf[16];
  5419.  
  5420.     sched->ksize = sz;
  5421.     memset(buf, 0, sizeof(buf));
  5422.     memcpy(buf, key, sz);
  5423.     cast_key_sched(sched, buf);
  5424. }
  5425.  
  5426. /* 40, 64, and 80-bit keys - all use 12 rounds */
  5427.  
  5428. void
  5429. ck_cast5_40_key_sched(sched, key)
  5430.     CastKeySched * sched;
  5431.     uint8 * key;
  5432. {
  5433.     cast5_key_sched(sched, key, 5);
  5434. }
  5435.  
  5436. #ifndef CAST_EXPORT_ENCRYPTION
  5437. void
  5438. ck_cast5_64_key_sched(sched, key)
  5439.      CastKeySched * sched;
  5440.      uint8 * key;
  5441. {
  5442.     cast5_key_sched(sched, key, 8);
  5443. }
  5444.  
  5445. void
  5446. ck_cast5_80_key_sched(sched, key)
  5447.      CastKeySched * sched;
  5448.      uint8 * key;
  5449. {
  5450.     cast5_key_sched(sched, key, 10);
  5451. }
  5452. #endif /* CAST_EXPORT_ENCRYPTION */
  5453. #endif /* CK_CAST */
  5454.  
  5455. #ifdef CRYPT_DLL
  5456. static char *
  5457. ck_crypt_dll_version()
  5458. {
  5459.     return(ckcrpv);
  5460. }
  5461.  
  5462. int
  5463. crypt_dll_init( struct _crypt_dll_init * init )
  5464. {
  5465. #ifdef LIBDES
  5466.     extern int des_check_key;
  5467.     extern void libdes_dll_init(struct _crypt_dll_init *);
  5468.     des_check_key = 1;
  5469. #endif /* LIBDES */
  5470.  
  5471.     if ( init->version >= 1 ) {
  5472.         p_ttol = init->p_ttol;
  5473.         p_dodebug = init->p_dodebug;
  5474.         p_dohexdump = init->p_dohexdump;
  5475.         p_tn_debug = init->p_tn_debug;
  5476.         p_vscrnprintf = init->p_vscrnprintf;
  5477.         if ( init->version == 1 )
  5478.             return(1);
  5479.     }
  5480.     if ( init->version >= 2 ) {
  5481.         /* This is a k5_context but we don't want to include krb5.h */
  5482.         p_k5_context = (void *) init->p_k5_context;
  5483.         if ( init->version == 2 )
  5484.             return(1);
  5485.     }
  5486.     if ( init->version >= 3 ) {
  5487.         init->p_install_funcs("encrypt_parse",encrypt_parse);
  5488.         init->p_install_funcs("encrypt_init",encrypt_init);
  5489.         init->p_install_funcs("encrypt_session_key",encrypt_session_key);
  5490.         init->p_install_funcs("encrypt_send_request_start",
  5491.                               encrypt_send_request_start
  5492.                               );
  5493.         init->p_install_funcs("encrypt_request_start",encrypt_request_start);
  5494.         init->p_install_funcs("encrypt_send_request_end",
  5495.                               encrypt_send_request_end
  5496.                               );
  5497.         init->p_install_funcs("encrypt_request_end",encrypt_request_end);
  5498.         init->p_install_funcs("encrypt_send_end",encrypt_send_end);
  5499.         init->p_install_funcs("encrypt_send_support",encrypt_send_support);
  5500.         init->p_install_funcs("encrypt_is_encrypting",encrypt_is_encrypting);
  5501.         init->p_install_funcs("encrypt_is_decrypting",encrypt_is_decrypting);
  5502.         init->p_install_funcs("get_crypt_table",get_crypt_table);
  5503.         init->p_install_funcs("des_is_weak_key",ck_des_is_weak_key);
  5504.         libdes_dll_init(init);
  5505.         if (init->version == 3)
  5506.           return(1);
  5507.     }
  5508.     if ( init->version >= 4 ) {
  5509.         init->p_install_funcs("crypt_dll_version",ck_crypt_dll_version);
  5510.         if (init->version == 4)
  5511.           return(1);
  5512.     }
  5513.  
  5514.     if ( init->version >= 5 ) {
  5515.         p_reqtelmutex = init->p_reqtelmutex;
  5516.         p_reltelmutex = init->p_reltelmutex;
  5517.         if (init->version == 5)
  5518.           return(1);
  5519.     }
  5520.  
  5521.     if ( init->version >= 6 ) {
  5522.         init->p_install_funcs("encrypt_dont_support",encrypt_dont_support);
  5523.         if ( init->version == 6 )
  5524.             return(1);
  5525.         /* when adding new versions; migrate the next two lines */
  5526.         init->version = 6;
  5527.         return(1);
  5528.     }
  5529.     return(0);
  5530. }
  5531.  
  5532. #undef malloc
  5533. #undef realloc
  5534. #undef free
  5535. #undef strdup
  5536.  
  5537. static void
  5538. fatal(char *msg) {
  5539.     if (!msg) msg = "";
  5540.  
  5541.     printf(msg);
  5542.     exit(1);        /* Exit indicating failure */
  5543. }
  5544.  
  5545. void *
  5546. kmalloc(size_t size)
  5547. {
  5548.     void *ptr;
  5549.  
  5550.     if (size == 0) {
  5551.         fatal("kmalloc: zero size");
  5552.     }
  5553.     ptr = malloc(size);
  5554.     if (ptr == NULL) {
  5555.         fatal("kmalloc: out of memory");
  5556.     }
  5557.     return ptr;
  5558. }
  5559.  
  5560. void *
  5561. krealloc(void *ptr, size_t new_size)
  5562. {
  5563.     void *new_ptr;
  5564.  
  5565.     if (new_size == 0) {
  5566.         fatal("krealloc: zero size");
  5567.     }
  5568.     if (ptr == NULL)
  5569.         new_ptr = malloc(new_size);
  5570.     else
  5571.         new_ptr = realloc(ptr, new_size);
  5572.     if (new_ptr == NULL) {
  5573.         fatal("krealloc: out of memory");
  5574.     }
  5575.     return new_ptr;
  5576. }
  5577.  
  5578. void
  5579. kfree(void *ptr)
  5580. {
  5581.     if (ptr == NULL) {
  5582.         printf("kfree: NULL pointer given as argument");
  5583.         return;
  5584.     }
  5585.     free(ptr);
  5586. }
  5587.  
  5588. char *
  5589. kstrdup(const char *str)
  5590. {
  5591.     size_t len;
  5592.     char *cp;
  5593.  
  5594.     if (str == NULL) {
  5595.         fatal("kstrdup: NULL pointer given as argument");
  5596.     }
  5597.     len = strlen(str) + 1;
  5598.     cp = kmalloc(len);
  5599.     if (cp)
  5600.         memcpy(cp, str, len);
  5601.     return cp;
  5602. }
  5603. #endif /* CRYPT_DLL */
  5604. #endif /* CK_ENCRYPTION */
  5605.