mirror of
https://github.com/vxunderground/MalwareSourceCode.git
synced 2024-12-23 03:46:10 +00:00
26 lines
706 B
C#
26 lines
706 B
C#
|
// Decompiled with JetBrains decompiler
|
|||
|
// Type: SevenZip.Compression.LZ.IInWindowStream
|
|||
|
// Assembly: crypted, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
|
|||
|
// MVID: 316F25AB-9DC5-41B1-B1CB-0BB9D97AEA6A
|
|||
|
// Assembly location: C:\Users\Administrateur\Downloads\Virusshare-00000-msil\Trojan-Ransom.Win32.Gimemo.ayt-7cb020d260d835f80919399a58563918f73757689e39ba851e89cc00a05535da.exe
|
|||
|
|
|||
|
using System.IO;
|
|||
|
|
|||
|
namespace SevenZip.Compression.LZ
|
|||
|
{
|
|||
|
internal interface IInWindowStream
|
|||
|
{
|
|||
|
void SetStream(Stream inStream);
|
|||
|
|
|||
|
void Init();
|
|||
|
|
|||
|
void ReleaseStream();
|
|||
|
|
|||
|
byte GetIndexByte(int index);
|
|||
|
|
|||
|
uint GetMatchLen(int index, uint distance, uint limit);
|
|||
|
|
|||
|
uint GetNumAvailableBytes();
|
|||
|
}
|
|||
|
}
|