Source code of Windows XP (NT5)
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.

24 lines
398 B

  1. /* rsa_sys.c
  2. *
  3. * RSA system dependent functions.
  4. * Memory allocation
  5. * Random number generation.
  6. *
  7. */
  8. #ifndef __RSA_SYS_H__
  9. #define __RSA_SYS_H__
  10. #ifndef KMODE_RSA32
  11. #define RSA32Alloc(cb) LocalAlloc(0, cb)
  12. #define RSA32Free(pv) LocalFree(pv)
  13. #else
  14. void* __stdcall RSA32Alloc( unsigned long cb );
  15. void __stdcall RSA32Free( void *pv );
  16. #endif // KMODE_RSA32
  17. #endif // __RSA_SYS_H__