home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / archives / cku206.zip / ck_crp.c next >
C/C++ Source or Header  |  2002-06-25  |  171KB  |  5,498 lines

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