RAND_egd_bytes() private method

private RAND_egd_bytes ( string path, int bytes ) : int
path string
bytes int
return int
Example #1
0
 /// <summary>
 /// Calls RAND_egd_bytes()
 /// </summary>
 /// <param name="path"></param>
 /// <param name="bytes"></param>
 public static void GatherEntropy(string path, int bytes)
 {
     Native.ExpectSuccess(Native.RAND_egd_bytes(path, bytes));
 }