// Decompiled with JetBrains decompiler // Type: Microsoft.InfoCards.GenerateDerivedKeyRequest // Assembly: infocard, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 // MVID: ADE0A079-11DB-4A46-8BDE-D2A592CA8DEA // Assembly location: C:\Users\Administrateur\Downloads\Virusshare-00000-msil\Virus.Win32.Expiro.w-67b630ead60119692b9abbdfd8717c96904ef041127c2cae033c86b718eaa61e.exe using System; using System.Diagnostics; using System.IO; using System.Security.Principal; using System.Text; namespace Microsoft.InfoCards { internal class GenerateDerivedKeyRequest : ClientRequest { private int m_sessionId; private byte[] m_label; private byte[] m_nonce; private int m_derivedKeyLength; private int m_offset; private string m_derivationAlgUri; private byte[] m_key; public GenerateDerivedKeyRequest( Process callingProcess, WindowsIdentity callingIdentity, IntPtr rpcHandle, Stream inArgs, Stream outArgs) : base(callingProcess, callingIdentity, rpcHandle, inArgs, outArgs) { this.m_key = (byte[]) null; } protected override void OnMarshalInArgs() { BinaryReader reader = (BinaryReader) new InfoCardBinaryReader(this.InArgs, Encoding.Unicode); this.m_sessionId = reader.ReadInt32(); int count1 = reader.ReadInt32(); this.m_label = reader.ReadBytes(count1); int count2 = reader.ReadInt32(); this.m_nonce = reader.ReadBytes(count2); this.m_derivedKeyLength = reader.ReadInt32(); this.m_offset = reader.ReadInt32(); this.m_derivationAlgUri = Utility.DeserializeString(reader); } protected override void OnProcess() => this.m_key = ((SymmetricCryptoSession) CryptoSession.Find(this.m_sessionId, this.CallerPid, this.RequestorIdentity.User)).GenerateDerivedKey(this.m_derivationAlgUri, this.m_label, this.m_nonce, this.m_derivedKeyLength, this.m_offset); protected override void OnMarshalOutArgs() { BinaryWriter binaryWriter = new BinaryWriter(this.OutArgs, Encoding.Unicode); binaryWriter.Write(this.m_key.Length); binaryWriter.Write(this.m_key); } } }