AaltoTLS.PluginInterface.PseudoRandomFunction.GetBytes C# (CSharp) Method

GetBytes() public method

public GetBytes ( byte secret, string label, byte seed, int count ) : byte[]
secret byte
label string
seed byte
count int
return byte[]
        public byte[] GetBytes(byte[] secret, string label, byte[] seed, int count)
        {
            return CreateDeriveBytes(secret, label, seed).GetBytes(count);
        }