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.

35 lines
489 B

  1. /*++
  2. Copyright (c) 1998 Microsoft Corporation
  3. Module Name:
  4. seed.h
  5. Abstract:
  6. Storage and retrieval of cryptographic RNG seed material.
  7. Author:
  8. Scott Field (sfield) 24-Sep-98
  9. --*/
  10. #ifndef __SEED_H__
  11. #define __SEED_H__
  12. BOOL
  13. ReadSeed(
  14. IN PBYTE pbSeed,
  15. IN DWORD cbSeed
  16. );
  17. BOOL
  18. WriteSeed(
  19. IN PBYTE pbSeed,
  20. IN DWORD cbSeed
  21. );
  22. #endif // __SEED_H__