AaltoTLS.PluginInterface.PseudoRandomFunction.GetBytes C# (CSharp) 메소드

GetBytes() 공개 메소드

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