mirror of https://github.com/tongzx/nt5src
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
454 B
35 lines
454 B
/*++
|
|
|
|
Copyright (c) 1998 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
seed.h
|
|
|
|
Abstract:
|
|
|
|
Storage and retrieval of cryptographic RNG seed material.
|
|
|
|
Author:
|
|
|
|
Scott Field (sfield) 24-Sep-98
|
|
|
|
--*/
|
|
|
|
#ifndef __SEED_H__
|
|
#define __SEED_H__
|
|
|
|
BOOL
|
|
ReadSeed(
|
|
IN PBYTE pbSeed,
|
|
IN DWORD cbSeed
|
|
);
|
|
|
|
BOOL
|
|
WriteSeed(
|
|
IN PBYTE pbSeed,
|
|
IN DWORD cbSeed
|
|
);
|
|
|
|
#endif // __SEED_H__
|
|
|