Goedel.Cryptography.CryptoCatalog.GetBits C# (CSharp) Method

GetBits() public static method

Returns a byte array with the specified number of random bits.
public static GetBits ( int Bits ) : byte[]
Bits int Number of bits
return byte[]
        public static byte[] GetBits(int Bits) {
            return GetBytes((Bits + 7) / 8);
            }