Microsoft.Protocols.TestTools.StackSdk.RemoteDesktop.Rdpbcgr.RdpbcgrServerSessionContext.GenerateSessionKey C# (CSharp) Method

GenerateSessionKey() private method

Generate session key for encryption by using the member field encryptionAlgorithm.
private GenerateSessionKey ( ) : void
return void
        internal void GenerateSessionKey()
        {
            lock (contextLock)
            {
                encryptionAlgorithm.GenerateSessionKey(clientRandom, ServerRandomNumber);
            }
        }