RAND_add() private method

private RAND_add ( byte buf, int num, double entropy ) : void
buf byte
num int
entropy double
return void
Example #1
0
 /// <summary>
 /// Calls RAND_add()
 /// </summary>
 /// <param name="buf"></param>
 /// <param name="entropy"></param>
 public static void Add(byte[] buf, double entropy)
 {
     Native.RAND_add(buf, buf.Length, entropy);
 }