RAND_set_rand_method() private method

private RAND_set_rand_method ( IntPtr meth ) : int
meth IntPtr
return int
示例#1
0
 private void Restore()
 {
     Native.ExpectSuccess(Native.RAND_set_rand_method(original));
 }
示例#2
0
 public void Override()
 {
     Marshal.StructureToPtr(this.raw, this.ptr, false);
     Native.ExpectSuccess(Native.RAND_set_rand_method(this.ptr));
 }