windows-nt/Source/XPSP1/NT/ds/win32/ntcrypto/randlib/seed.h

36 lines
454 B
C
Raw Normal View History

2020-09-26 03:20:57 -05:00
/*++
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__