home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / crypl200.zip / BNLIB / LBNALPHA.H < prev    next >
C/C++ Source or Header  |  1996-05-16  |  667b  |  28 lines

  1. /*
  2.  * lbnalpha.h - header file that declares the Alpha assembly-language
  3.  * subroutines.  It is intended to be included via the BNINCLUDE
  4.  * mechanism.
  5.  */
  6.  
  7. #define BN_LITTLE_ENDIAN 1
  8.  
  9. #ifdef __cplusplus
  10. extern "C" {
  11. #endif
  12.  
  13. void lbnMulN1_64(unsigned long *out, unsigned long const *in, unsigned len,
  14.     unsigned long k);
  15. #define lbnMulN1_64 lbnMulN1_64
  16.  
  17. unsigned long lbnMulAdd1_64(unsigned long *out, unsigned long const *in,
  18.     unsigned len, unsigned long k);
  19. #define lbnMulAdd1_64 lbnMulAdd1_64
  20.  
  21. unsigned long lbnMulSub1_64(unsigned long *out, unsigned long const *in,
  22.     unsigned len, unsigned long k);
  23. #define lbnMulSub1_64 lbnMulSub1_64
  24.  
  25. #ifdef __cplusplus
  26. }
  27. #endif
  28.