Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
629 B

  1. /* CRYPTDBG.H
  2. **
  3. **
  4. **
  5. **
  6. */
  7. #ifndef __CRYPTDBG_H
  8. #define __CRYPTDBG_H
  9. #ifdef DEBUG
  10. BOOL InitDebugHelpers(HINSTANCE hLib);
  11. void DisplayCert(PCCERT_CONTEXT pCert);
  12. void DisplayCrl(PCCRL_CONTEXT pCrl);
  13. void PrintError(LPCSTR pszMsg);
  14. void SMDOUT(LPSTR szFmt, ...);
  15. void CRDOUT(LPSTR szFmt, ...);
  16. void CSSDOUT(LPSTR szFmt, ...);
  17. #else // !DEBUG
  18. #define SMDOUT 1 ? (void)0 : (void)
  19. #define CRDOUT 1 ? (void)0 : (void)
  20. #define CSSDOUT 1 ? (void)0 : (void)
  21. #endif
  22. #define CRYPT_LEVEL (1024)
  23. #define DOUTL_SMIME CRYPT_LEVEL
  24. #define DOUTL_CSS 4096
  25. #endif // include once