home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / archives / cku201.zip / ck_crp.c next >
C/C++ Source or Header  |  2002-01-05  |  171KB  |  5,491 lines

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