AaltoTLS.PluginInterface.PseudoRandomFunction.GetBytes C# (CSharp) Méthode

GetBytes() public méthode

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