RNG_UpdateSeedFile updates an RNG seed file.
Public Declare Function RNG_UpdateSeedFile Lib "diCrPKI.dll" (ByVal strSeedFile As String, ByVal nOptions As Long) As Long
nRet = RNG_UpdateSeedFile(strSeedFile, nOptions)
String specifying the seed file to be updated.Long option flags: not used in this release. Specify zero.
long _stdcall RNG_UpdateSeedFile(const char *szSeedFile, long nOptions);
Long: If successful, the return value is zero; otherwise it returns a nonzero error code.
This writes a fresh set of random data to the seed file. The seed file must be writable by the user. Use this function at periodic intervals or when exiting your application.
See the example in RNG_Initialize.
RNG_Initialize RNG_MakeSeedFile