/// <summary> /// Seeds the RNG with user data /// </summary> /// <param name="data">Data to seed the RNG with</param> public static void Seed(byte[] data) { OpenSSL.RAND_seed(data, data.Length); fSeeded = true; }