MalwareSourceCode/MSIL/Virus/Win32/E/Virus.Win32.Expiro.w-69bb73081eac86b8cf86f45e33515d0095855636967076e2b593d7a30cd80a07/Microsoft/InfoCards/VerifyHashRequest.cs
2022-08-18 06:28:56 -05:00

64 lines
2.5 KiB
C#

// Decompiled with JetBrains decompiler
// Type: Microsoft.InfoCards.VerifyHashRequest
// Assembly: infocard, Version=3.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
// MVID: 516D8B44-4448-4D2C-8B8E-FFBB3FFE472B
// Assembly location: C:\Users\Administrateur\Downloads\Virusshare-00000-msil\Virus.Win32.Expiro.w-69bb73081eac86b8cf86f45e33515d0095855636967076e2b593d7a30cd80a07.exe
using Microsoft.InfoCards.Diagnostics;
using System;
using System.Diagnostics;
using System.IO;
using System.Security.Principal;
using System.Text;
namespace Microsoft.InfoCards
{
internal class VerifyHashRequest : ClientRequest
{
private int m_cryptoSession;
private byte[] m_hash;
private string m_hashAlgorithmOid;
private byte[] m_signature;
private bool m_verified;
public VerifyHashRequest(
Process callingProcess,
WindowsIdentity callingIdentity,
IntPtr rpcHandle,
Stream inArgs,
Stream outArgs)
: base(callingProcess, callingIdentity, rpcHandle, inArgs, outArgs)
{
this.m_cryptoSession = 0;
this.m_hash = (byte[]) null;
this.m_hashAlgorithmOid = (string) null;
this.m_signature = (byte[]) null;
this.m_verified = false;
}
protected override void OnMarshalInArgs()
{
BinaryReader reader = (BinaryReader) new InfoCardBinaryReader(this.InArgs, Encoding.Unicode);
this.m_cryptoSession = reader.ReadInt32();
int count1 = reader.ReadInt32();
this.m_hash = reader.ReadBytes(count1);
int count2 = reader.ReadInt32();
this.m_signature = reader.ReadBytes(count2);
this.m_hashAlgorithmOid = Utility.DeserializeString(reader);
InfoCardTrace.ThrowInvalidArgumentConditional(0 == this.m_cryptoSession, "cryptoSession");
InfoCardTrace.ThrowInvalidArgumentConditional(this.m_hash == null || 0 == this.m_hash.Length, "hash");
InfoCardTrace.ThrowInvalidArgumentConditional(this.m_signature == null || 0 == this.m_signature.Length, "signature");
InfoCardTrace.ThrowInvalidArgumentConditional(null == this.m_hashAlgorithmOid, "hashAlgorithmOid");
}
protected override void OnProcess() => this.m_verified = ((AsymmetricCryptoSession) CryptoSession.Find(this.m_cryptoSession, this.CallerPid, this.RequestorIdentity.User)).VerifyHash(this.m_hash, this.m_hashAlgorithmOid, this.m_signature);
protected override void OnMarshalOutArgs()
{
BinaryWriter binaryWriter = new BinaryWriter(this.OutArgs, Encoding.Unicode);
binaryWriter.Write(this.m_verified);
binaryWriter.Flush();
}
}
}