home *** CD-ROM | disk | FTP | other *** search
- /* cbc_cksum.c */
- /* Copyright (C) 1992 Eric Young - see COPYING for more details */
- #include "des_local.h"
-
- ulong des_cbc_cksum(input,output,length,schedule,ivec)
- des_cblock *input;
- des_cblock *output;
- long length;
- des_key_schedule schedule;
- des_cblock *ivec;
- {
- register ulong tout0,tout1,tin0,tin1;
- register long l=length;
- ulong tin[2],tout[2];
- uchar *in,*out,*iv;
-
- in=(uchar *)input;
- out=(uchar *)output;
- iv=(uchar *)ivec;
-
- c2l(iv,tout0);
- c2l(iv,tout1);
- for (; l>0; l-=8)
- {
- if (l >= 8)
- {
- c2l(in,tin0);
- c2l(in,tin1);
- }
- else
- c2ln(in,tin0,tin1,l);
-
- tin0^=tout0;
- tin1^=tout1;
- tin[0]=tin0;
- tin[1]=tin1;
- des_encrypt((ulong *)tin,(ulong *)tout,schedule,DES_ENCRYPT);
- /* fix 15/10/91 eay - thanks to keithr@sco.COM */
- tout0=tout[0];
- tout1=tout[1];
- }
- l2c(tout0,out);
- l2c(tout1,out);
- tout0=tin0=tin1=tin[0]=tin[1]=tout[0]=tout[1]=0;
- return(tout1);
- }
-