Org.BouncyCastle.Crypto.Agreement.Srp.Srp6Utilities.ToPaddedArray C# (CSharp) 메소드

ToPaddedArray() 공개 정적인 메소드

Gets the byte representation of n that is padded to match the byte length of length.
public static ToPaddedArray ( this n, int length ) : byte[]
n this
length int
리턴 byte[]
        public static byte[] ToPaddedArray(this BigInteger n, int length)
        {
            return GetPadded(n, length);
        }
    }