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

BN_free() private method

private BN_free ( IntPtr a ) : void
a System.IntPtr
return void
        public static extern void BN_free(IntPtr a);

Usage Example

Example #1
0
 /// <summary>
 /// Calls BN_free()
 /// </summary>
 protected override void OnDispose()
 {
     Native.BN_free(this.ptr);
 }
Native