Can someone help me create a declare statement for a DES encryption
DLL. Below is part of the comment block from the header file.
------------------
Thanks,
Doug Gamble
mailto:[email protected]gamtech.com[email protected]</A>
DLL. Below is part of the comment block from the header file.
Code:
* Synopsis: DesXxCrypt(key,inp,out,cnt) * * Input: key - 64-bit DES key * inp - pointer to buffer of input data * out - pointer to buffer for result data * cnt - count of 64-bit blocks to be processed * * Output: None. * * Side Effect: Writes data to output buffer "out". * *****************************************************************************/ extern VOID FAR PASCAL DesEnCrypt(LPBYTE key,LPBYTE inp,LPBYTE out,WORD cnt); extern VOID FAR PASCAL DesDeCrypt(LPBYTE key,LPBYTE inp,LPBYTE out,WORD cnt);
------------------
Thanks,
Doug Gamble
mailto:[email protected]gamtech.com[email protected]</A>
Comment