[2696] in Kerberos_V5_Development
Re: On des.h prototypes...
daemon@ATHENA.MIT.EDU (Assar Westerlund)
Thu Nov 6 17:56:59 1997
To: epeisach@MIT.EDU
Cc: krbdev@MIT.EDU
From: Assar Westerlund <assar@sics.se>
Date: 06 Nov 1997 23:52:57 +0100
In-Reply-To: epeisach@MIT.EDU's message of "Thu, 6 Nov 1997 16:24:30 -0500"
epeisach@MIT.EDU writes:
> Scenario: The prototypes for des_pcbc_encrypt and des_quad_cksum are wrong.
> This problem was caused by integrating the cygnus krb4 and the athena
> des425 libraries...
Just for completeness, here are the prototypes from Eric Young's
libdes:
typedef unsigned char des_cblock[8];
void des_pcbc_encrypt(des_cblock *input,des_cblock *output,long length,
des_key_schedule schedule,des_cblock *ivec,int enc);
DES_LONG des_quad_cksum(des_cblock *input,des_cblock *output,
long length,int out_count,des_cblock *seed);
/assar