Exemplo n.º 1
0
        /// <exception cref="IOException"/>
        protected static byte[] GenerateSupplementalData(IList supplementalData)
        {
            MemoryStream buf = new MemoryStream();

            TlsProtocol.WriteSupplementalData(buf, supplementalData);
            return(buf.ToArray());
        }