global.h
上传用户:zfm_0418
上传日期:2013-03-09
资源大小:7k
文件大小:1k
源码类别:

加密解密

开发平台:

C/C++

  1. /* GLOBAL.H - RSAREF types and constants
  2.  */
  3. /* PROTOTYPES should be set to one if and only if the compiler supports
  4.   function argument prototyping.
  5.   The following makes PROTOTYPES default to 0 if it has not already
  6.   been defined with C compiler flags.
  7.  */
  8. #ifndef PROTOTYPES
  9. #define PROTOTYPES 0
  10. #endif
  11. /* POINTER defines a generic pointer type */
  12. typedef unsigned char *POINTER;
  13. /* UINT2 defines a two byte word */
  14. typedef unsigned short int UINT2;
  15. /* UINT4 defines a four byte word */
  16. typedef unsigned long int UINT4;
  17. /* PROTO_LIST is defined depending on how PROTOTYPES is defined above.
  18. If using PROTOTYPES, then PROTO_LIST returns the list, otherwise it
  19.   returns an empty list.
  20.  */
  21. #if PROTOTYPES
  22. #define PROTO_LIST(list) list
  23. #else
  24. #define PROTO_LIST(list) ()
  25. #endif