home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / crypl200.zip / HASH / SHA.C < prev    next >
Text File  |  1996-09-29  |  746b  |  27 lines

  1. /****************************************************************************
  2. *                                                                            *
  3. *                          SHA Message Digest Algorithm                         *
  4. *                        Copyright Peter Gutmann 1992-1996                    *
  5. *                                                                            *
  6. ****************************************************************************/
  7.  
  8. #include <string.h>
  9. #if defined( INC_ALL )
  10.   #include "crypt.h"
  11.   #include "sha.h"
  12. #elif defined( INC_CHILD )
  13.   #include "../crypt.h"
  14.   #include "sha.h"
  15. #else
  16.   #include "crypt.h"
  17.   #include "hash/sha.h"
  18. #endif /* Compiler-specific includes */
  19.  
  20. /* Bring in the SHA core code */
  21.  
  22. #if defined( _MSC_VER ) || defined( __MWERKS__ )
  23.   #include "shacore.c"
  24. #else
  25.   #include "hash/shacore.c"
  26. #endif /* Compiler-specific includes */
  27.