BN_set_word() 개인적인 메소드

private BN_set_word ( IntPtr a, uint w ) : int
a System.IntPtr
w uint
리턴 int
예제 #1
0
 /// <summary>
 /// Creates a BigNumber by calling BN_set_word()
 /// </summary>
 /// <param name="value"></param>
 public BigNumber(uint value)
     : this()
 {
     Native.ExpectSuccess(Native.BN_set_word(this.ptr, value));
 }