OpenSSL.Core.Native.RAND_set_rand_method C# (CSharp) Method

RAND_set_rand_method() private method

private RAND_set_rand_method ( IntPtr meth ) : int
meth IntPtr
return int
        public static extern int RAND_set_rand_method(IntPtr meth);

Usage Example

Example #1
0
 private void Restore()
 {
     Native.ExpectSuccess(Native.RAND_set_rand_method(original));
 }
All Usage Examples Of OpenSSL.Core.Native::RAND_set_rand_method
Native